| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| name | String |
|
Yes | @length(1, 160) |
| String |
|
Yes | @email @length(3, 160) | |
| artist | Artist? |
|
No | - |
| author | Author? |
|
No | - |
| editions | Edition[] |
|
Yes | - |
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| deletedAt | DateTime? |
|
No | - |
| zenstack_guard | Boolean |
|
Yes | - |
| zenstack_transaction | String? |
|
No | - |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum[] | No |
Find zero or more User
// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
| Name | Type | Required |
|---|---|---|
| data | UserCreateInput | UserUncheckedCreateInput | Yes |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
| where | UserWhereInput | No |
Create or update one User
// Update or create a User
const user = await prisma.user.upsert({
create: {
// ... data to create a User
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
| create | UserCreateInput | UserUncheckedCreateInput | Yes |
| update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| stories | Story[] |
|
Yes | - |
| pageTexts | PageText[] |
|
Yes | - |
| user | User |
|
Yes | - |
| userId | String |
|
Yes | - |
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| deletedAt | DateTime? |
|
No | - |
Find zero or one Author
// Get one Author
const author = await prisma.author.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AuthorWhereUniqueInput | Yes |
Find first Author
// Get one Author
const author = await prisma.author.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AuthorWhereInput | No |
| orderBy | AuthorOrderByWithRelationInput[] | AuthorOrderByWithRelationInput | No |
| cursor | AuthorWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AuthorScalarFieldEnum[] | No |
Find zero or more Author
// Get all Author
const Author = await prisma.author.findMany()
// Get first 10 Author
const Author = await prisma.author.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AuthorWhereInput | No |
| orderBy | AuthorOrderByWithRelationInput[] | AuthorOrderByWithRelationInput | No |
| cursor | AuthorWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AuthorScalarFieldEnum[] | No |
Create one Author
// Create one Author
const Author = await prisma.author.create({
data: {
// ... data to create a Author
}
})
| Name | Type | Required |
|---|---|---|
| data | AuthorCreateInput | AuthorUncheckedCreateInput | Yes |
Delete one Author
// Delete one Author
const Author = await prisma.author.delete({
where: {
// ... filter to delete one Author
}
})
| Name | Type | Required |
|---|---|---|
| where | AuthorWhereUniqueInput | Yes |
Update one Author
// Update one Author
const author = await prisma.author.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AuthorUpdateInput | AuthorUncheckedUpdateInput | Yes |
| where | AuthorWhereUniqueInput | Yes |
Delete zero or more Author
// Delete a few Author
const { count } = await prisma.author.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AuthorWhereInput | No |
Update zero or one Author
const { count } = await prisma.author.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AuthorUpdateManyMutationInput | AuthorUncheckedUpdateManyInput | Yes |
| where | AuthorWhereInput | No |
Create or update one Author
// Update or create a Author
const author = await prisma.author.upsert({
create: {
// ... data to create a Author
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Author we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AuthorWhereUniqueInput | Yes |
| create | AuthorCreateInput | AuthorUncheckedCreateInput | Yes |
| update | AuthorUpdateInput | AuthorUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| stories | Story[] |
|
Yes | - |
| pageArtworks | PageArtwork[] |
|
Yes | - |
| user | User |
|
Yes | - |
| userId | String |
|
Yes | - |
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| deletedAt | DateTime? |
|
No | - |
Find zero or one Artist
// Get one Artist
const artist = await prisma.artist.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ArtistWhereUniqueInput | Yes |
Find first Artist
// Get one Artist
const artist = await prisma.artist.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ArtistWhereInput | No |
| orderBy | ArtistOrderByWithRelationInput[] | ArtistOrderByWithRelationInput | No |
| cursor | ArtistWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ArtistScalarFieldEnum[] | No |
Find zero or more Artist
// Get all Artist
const Artist = await prisma.artist.findMany()
// Get first 10 Artist
const Artist = await prisma.artist.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ArtistWhereInput | No |
| orderBy | ArtistOrderByWithRelationInput[] | ArtistOrderByWithRelationInput | No |
| cursor | ArtistWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ArtistScalarFieldEnum[] | No |
Create one Artist
// Create one Artist
const Artist = await prisma.artist.create({
data: {
// ... data to create a Artist
}
})
| Name | Type | Required |
|---|---|---|
| data | ArtistCreateInput | ArtistUncheckedCreateInput | Yes |
Delete one Artist
// Delete one Artist
const Artist = await prisma.artist.delete({
where: {
// ... filter to delete one Artist
}
})
| Name | Type | Required |
|---|---|---|
| where | ArtistWhereUniqueInput | Yes |
Update one Artist
// Update one Artist
const artist = await prisma.artist.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ArtistUpdateInput | ArtistUncheckedUpdateInput | Yes |
| where | ArtistWhereUniqueInput | Yes |
Delete zero or more Artist
// Delete a few Artist
const { count } = await prisma.artist.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ArtistWhereInput | No |
Update zero or one Artist
const { count } = await prisma.artist.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ArtistUpdateManyMutationInput | ArtistUncheckedUpdateManyInput | Yes |
| where | ArtistWhereInput | No |
Create or update one Artist
// Update or create a Artist
const artist = await prisma.artist.upsert({
create: {
// ... data to create a Artist
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Artist we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ArtistWhereUniqueInput | Yes |
| create | ArtistCreateInput | ArtistUncheckedCreateInput | Yes |
| update | ArtistUpdateInput | ArtistUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| pageTexts | PageText[] |
|
Yes | - |
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| deletedAt | DateTime? |
|
No | - |
Find zero or one Translator
// Get one Translator
const translator = await prisma.translator.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TranslatorWhereUniqueInput | Yes |
Find first Translator
// Get one Translator
const translator = await prisma.translator.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TranslatorWhereInput | No |
| orderBy | TranslatorOrderByWithRelationInput[] | TranslatorOrderByWithRelationInput | No |
| cursor | TranslatorWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TranslatorScalarFieldEnum[] | No |
Find zero or more Translator
// Get all Translator
const Translator = await prisma.translator.findMany()
// Get first 10 Translator
const Translator = await prisma.translator.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TranslatorWhereInput | No |
| orderBy | TranslatorOrderByWithRelationInput[] | TranslatorOrderByWithRelationInput | No |
| cursor | TranslatorWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TranslatorScalarFieldEnum[] | No |
Create one Translator
// Create one Translator
const Translator = await prisma.translator.create({
data: {
// ... data to create a Translator
}
})
| Name | Type | Required |
|---|---|---|
| data | TranslatorCreateInput | TranslatorUncheckedCreateInput | Yes |
Delete one Translator
// Delete one Translator
const Translator = await prisma.translator.delete({
where: {
// ... filter to delete one Translator
}
})
| Name | Type | Required |
|---|---|---|
| where | TranslatorWhereUniqueInput | Yes |
Update one Translator
// Update one Translator
const translator = await prisma.translator.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TranslatorUpdateInput | TranslatorUncheckedUpdateInput | Yes |
| where | TranslatorWhereUniqueInput | Yes |
Delete zero or more Translator
// Delete a few Translator
const { count } = await prisma.translator.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TranslatorWhereInput | No |
Update zero or one Translator
const { count } = await prisma.translator.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TranslatorUpdateManyMutationInput | TranslatorUncheckedUpdateManyInput | Yes |
| where | TranslatorWhereInput | No |
Create or update one Translator
// Update or create a Translator
const translator = await prisma.translator.upsert({
create: {
// ... data to create a Translator
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Translator we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TranslatorWhereUniqueInput | Yes |
| create | TranslatorCreateInput | TranslatorUncheckedCreateInput | Yes |
| update | TranslatorUpdateInput | TranslatorUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| name | String |
|
Yes | @length(1, 100) |
| type | ConceptType |
|
Yes | - |
| status | ConceptStatus |
|
Yes | - |
| description | String? |
|
No | - |
| prompt | String |
|
Yes | - |
| identifier | String |
|
Yes | - |
| classNoun | String |
|
Yes | - |
| negativePrompt | String |
|
Yes | - |
| instancePrompt | String |
|
Yes | The prompt you use to describe your training images, in the format: `a [identifier] [class noun]`, where the `[identifier]` should be a rare token. Relatively short sequences with 1-3 letters work the best (e.g. `sks`, `xjy`). `[class noun]` is a coarse class descriptor of the subject (e.g. cat, dog, watch, etc.). For example, your `instance_prompt` can be `a sks dog`, or with some extra description `a photo of a sks dog`. The trained model will learn to bind a unique identifier with your specific subject in the `instance_data`. |
| classPrompt | String |
|
Yes | The prompt or description of the coarse class of your training images, in the format of `a [class noun]`, optionally with some extra description. `class_prompt` is used to alleviate overfitting to your customized images (the trained model should still keep the learnt prior so that it can still generate different dogs when the `[identifier]` is not in the prompt). Corresponding to the examples of the `instant_prompt` above, the `class_prompt` can be `a dog` or `a photo of a dog`. |
| positivePrompts | String[] |
|
Yes | - |
| negativePrompts | String[] |
|
Yes | - |
| dreamboothTrainingId | String? |
|
No | - |
| dreamboothTraining | DreamBoothTraining? |
|
No | - |
| dreamboothModelURI | String? |
|
No | @url |
| photos | Photo[] |
|
Yes | - |
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| deletedAt | DateTime? |
|
No | - |
| zenstack_guard | Boolean |
|
Yes | - |
| zenstack_transaction | String? |
|
No | - |
Find zero or one Concept
// Get one Concept
const concept = await prisma.concept.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWhereUniqueInput | Yes |
Find first Concept
// Get one Concept
const concept = await prisma.concept.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWhereInput | No |
| orderBy | ConceptOrderByWithRelationInput[] | ConceptOrderByWithRelationInput | No |
| cursor | ConceptWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptScalarFieldEnum[] | No |
Find zero or more Concept
// Get all Concept
const Concept = await prisma.concept.findMany()
// Get first 10 Concept
const Concept = await prisma.concept.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConceptWhereInput | No |
| orderBy | ConceptOrderByWithRelationInput[] | ConceptOrderByWithRelationInput | No |
| cursor | ConceptWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConceptScalarFieldEnum[] | No |
Create one Concept
// Create one Concept
const Concept = await prisma.concept.create({
data: {
// ... data to create a Concept
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptCreateInput | ConceptUncheckedCreateInput | Yes |
Delete one Concept
// Delete one Concept
const Concept = await prisma.concept.delete({
where: {
// ... filter to delete one Concept
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWhereUniqueInput | Yes |
Update one Concept
// Update one Concept
const concept = await prisma.concept.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptUpdateInput | ConceptUncheckedUpdateInput | Yes |
| where | ConceptWhereUniqueInput | Yes |
Delete zero or more Concept
// Delete a few Concept
const { count } = await prisma.concept.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWhereInput | No |
Update zero or one Concept
const { count } = await prisma.concept.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyInput | Yes |
| where | ConceptWhereInput | No |
Create or update one Concept
// Update or create a Concept
const concept = await prisma.concept.upsert({
create: {
// ... data to create a Concept
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Concept we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConceptWhereUniqueInput | Yes |
| create | ConceptCreateInput | ConceptUncheckedCreateInput | Yes |
| update | ConceptUpdateInput | ConceptUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| uuid | String |
|
Yes | - |
| input | Json? |
|
No | - |
| output | Json? |
|
No | - |
| status | String? |
|
No | - |
| created_at | DateTime? |
|
No | - |
| started_at | DateTime? |
|
No | - |
| completed_at | DateTime? |
|
No | - |
| version | String? |
|
No | - |
| metrics | Json? |
|
No | - |
| error | String? |
|
No | - |
| logs | String? |
|
No | - |
Find zero or one Prediction
// Get one Prediction
const prediction = await prisma.prediction.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PredictionWhereUniqueInput | Yes |
Find first Prediction
// Get one Prediction
const prediction = await prisma.prediction.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PredictionWhereInput | No |
| orderBy | PredictionOrderByWithRelationInput[] | PredictionOrderByWithRelationInput | No |
| cursor | PredictionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PredictionScalarFieldEnum[] | No |
Find zero or more Prediction
// Get all Prediction
const Prediction = await prisma.prediction.findMany()
// Get first 10 Prediction
const Prediction = await prisma.prediction.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PredictionWhereInput | No |
| orderBy | PredictionOrderByWithRelationInput[] | PredictionOrderByWithRelationInput | No |
| cursor | PredictionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PredictionScalarFieldEnum[] | No |
Create one Prediction
// Create one Prediction
const Prediction = await prisma.prediction.create({
data: {
// ... data to create a Prediction
}
})
| Name | Type | Required |
|---|---|---|
| data | PredictionCreateInput | PredictionUncheckedCreateInput | Yes |
Delete one Prediction
// Delete one Prediction
const Prediction = await prisma.prediction.delete({
where: {
// ... filter to delete one Prediction
}
})
| Name | Type | Required |
|---|---|---|
| where | PredictionWhereUniqueInput | Yes |
Update one Prediction
// Update one Prediction
const prediction = await prisma.prediction.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PredictionUpdateInput | PredictionUncheckedUpdateInput | Yes |
| where | PredictionWhereUniqueInput | Yes |
Delete zero or more Prediction
// Delete a few Prediction
const { count } = await prisma.prediction.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PredictionWhereInput | No |
Update zero or one Prediction
const { count } = await prisma.prediction.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PredictionUpdateManyMutationInput | PredictionUncheckedUpdateManyInput | Yes |
| where | PredictionWhereInput | No |
Create or update one Prediction
// Update or create a Prediction
const prediction = await prisma.prediction.upsert({
create: {
// ... data to create a Prediction
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Prediction we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PredictionWhereUniqueInput | Yes |
| create | PredictionCreateInput | PredictionUncheckedCreateInput | Yes |
| update | PredictionUpdateInput | PredictionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| instance_prompt | String |
|
Yes | The prompt you use to describe your training images, in the format: `a [identifier] [class noun]`, where the `[identifier]` should be a rare token. Relatively short sequences with 1-3 letters work the best (e.g. `sks`, `xjy`). `[class noun]` is a coarse class descriptor of the subject (e.g. cat, dog, watch, etc.). For example, your `instance_prompt` can be `a sks dog`, or with some extra description `a photo of a sks dog`. The trained model will learn to bind a unique identifier with your specific subject in the `instance_data`. |
| class_prompt | String |
|
Yes | The prompt or description of the coarse class of your training images, in the format of `a [class noun]`, optionally with some extra description. `class_prompt` is used to alleviate overfitting to your customized images (the trained model should still keep the learnt prior so that it can still generate different dogs when the `[identifier]` is not in the prompt). Corresponding to the examples of the `instant_prompt` above, the `class_prompt` can be `a dog` or `a photo of a dog`. |
| instance_data | String |
|
Yes | A ZIP file containing your training images (JPG, PNG, etc. size not restricted). These images contain your 'subject' that you want the trained model to embed in the output domain for later generating customized scenes beyond the training images. For best results, use images without noise or unrelated objects in the background. |
| class_data | String |
|
Yes | An optional ZIP file containing the training data of class images. This corresponds to `class_prompt` above, also with the purpose of keeping the model generalizable. By default, the pretrained stable-diffusion model will generate N images (determined by the `num_class_images` you set) based on the `class_prompt` provided. But to save time or to have your preferred specific set of `class_data`, you can also provide them in a ZIP file. |
| num_class_images | Int |
|
Yes | Minimal class images for prior preservation loss. If not enough images are provided in class_data, additional images will be sampled with class_prompt. |
| save_sample_prompt | String? |
|
No | The prompt used to generate sample outputs to save. |
| save_sample_negative_prompt | String? |
|
No | The negative prompt used to generate sample outputs to save. |
| n_save_sample | Int |
|
Yes | The number of samples to save. |
| save_guidance_scale | Float |
|
Yes | CFG for save sample. |
| save_infer_steps | Int |
|
Yes | The number of inference steps for save sample. |
| pad_tokens | Boolean |
|
Yes | Flag to pad tokens to length 77. |
| with_prior_preservation | Boolean |
|
Yes | Flag to add prior preservation loss. |
| prior_loss_weight | Float |
|
Yes | Weight of prior preservation loss. |
| seed | Int |
|
Yes | A seed for reproducible training |
| resolution | Int |
|
Yes | The resolution for input images. All the images in the train/validation dataset will be resized to this resolution. |
| center_crop | Boolean |
|
Yes | Whether to center crop images before resizing to resolution |
| train_text_encoder | Boolean |
|
Yes | Whether to train the text encoder |
| train_batch_size | Int |
|
Yes | Batch size (per device) for the training dataloader. |
| sample_batch_size | Int |
|
Yes | Batch size (per device) for sampling images. |
| num_train_epochs | Int |
|
Yes | Number of training epochs |
| max_train_steps | Int |
|
Yes | Total number of training steps to perform. If provided, overrides num_train_epochs. |
| gradient_accumulation_steps | Int |
|
Yes | Number of updates steps to accumulate before performing a backward/update pass. |
| gradient_checkpointing | Boolean |
|
Yes | Whether or not to use gradient checkpointing to save memory at the expense of slower backward pass. |
| learning_rate | Float |
|
Yes | Initial learning rate (after the potential warmup period) to use. |
| scale_lr | Boolean |
|
Yes | Scale the learning rate by the number of GPUs, gradient accumulation steps, and batch size. |
| lr_scheduler | LRScheduler |
|
Yes | The scheduler type to use |
| lr_warmup_steps | Int |
|
Yes | Number of steps for the warmup in the lr scheduler. |
| use_8bit_adam | Boolean |
|
Yes | Whether or not to use 8-bit Adam from bitsandbytes. |
| adam_beta1 | Float |
|
Yes | The beta1 parameter for the Adam optimizer. |
| adam_beta2 | Float |
|
Yes | The beta2 parameter for the Adam optimizer. |
| adam_weight_decay | Float |
|
Yes | Weight decay to use |
| max_grad_norm | Float |
|
Yes | Epsilon value for the Adam optimizer Max gradient norm. |
| Concept | Concept[] |
|
Yes | - |
Find zero or one DreamBoothTraining
// Get one DreamBoothTraining
const dreamBoothTraining = await prisma.dreamBoothTraining.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DreamBoothTrainingWhereUniqueInput | Yes |
Find first DreamBoothTraining
// Get one DreamBoothTraining
const dreamBoothTraining = await prisma.dreamBoothTraining.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DreamBoothTrainingWhereInput | No |
| orderBy | DreamBoothTrainingOrderByWithRelationInput[] | DreamBoothTrainingOrderByWithRelationInput | No |
| cursor | DreamBoothTrainingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DreamBoothTrainingScalarFieldEnum[] | No |
Find zero or more DreamBoothTraining
// Get all DreamBoothTraining
const DreamBoothTraining = await prisma.dreamBoothTraining.findMany()
// Get first 10 DreamBoothTraining
const DreamBoothTraining = await prisma.dreamBoothTraining.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | DreamBoothTrainingWhereInput | No |
| orderBy | DreamBoothTrainingOrderByWithRelationInput[] | DreamBoothTrainingOrderByWithRelationInput | No |
| cursor | DreamBoothTrainingWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | DreamBoothTrainingScalarFieldEnum[] | No |
Create one DreamBoothTraining
// Create one DreamBoothTraining
const DreamBoothTraining = await prisma.dreamBoothTraining.create({
data: {
// ... data to create a DreamBoothTraining
}
})
| Name | Type | Required |
|---|---|---|
| data | DreamBoothTrainingCreateInput | DreamBoothTrainingUncheckedCreateInput | Yes |
Delete one DreamBoothTraining
// Delete one DreamBoothTraining
const DreamBoothTraining = await prisma.dreamBoothTraining.delete({
where: {
// ... filter to delete one DreamBoothTraining
}
})
| Name | Type | Required |
|---|---|---|
| where | DreamBoothTrainingWhereUniqueInput | Yes |
Update one DreamBoothTraining
// Update one DreamBoothTraining
const dreamBoothTraining = await prisma.dreamBoothTraining.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DreamBoothTrainingUpdateInput | DreamBoothTrainingUncheckedUpdateInput | Yes |
| where | DreamBoothTrainingWhereUniqueInput | Yes |
Delete zero or more DreamBoothTraining
// Delete a few DreamBoothTraining
const { count } = await prisma.dreamBoothTraining.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | DreamBoothTrainingWhereInput | No |
Update zero or one DreamBoothTraining
const { count } = await prisma.dreamBoothTraining.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | DreamBoothTrainingUpdateManyMutationInput | DreamBoothTrainingUncheckedUpdateManyInput | Yes |
| where | DreamBoothTrainingWhereInput | No |
Create or update one DreamBoothTraining
// Update or create a DreamBoothTraining
const dreamBoothTraining = await prisma.dreamBoothTraining.upsert({
create: {
// ... data to create a DreamBoothTraining
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the DreamBoothTraining we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | DreamBoothTrainingWhereUniqueInput | Yes |
| create | DreamBoothTrainingCreateInput | DreamBoothTrainingUncheckedCreateInput | Yes |
| update | DreamBoothTrainingUpdateInput | DreamBoothTrainingUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| userId | String |
|
Yes | - |
| pdfId | String |
|
Yes | @zod.string.cuid() |
| user | User |
|
Yes | @zod.string.cuid() |
|
Yes | - | ||
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| deletedAt | DateTime? |
|
No | - |
Find zero or one Edition
// Get one Edition
const edition = await prisma.edition.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EditionWhereUniqueInput | Yes |
Find first Edition
// Get one Edition
const edition = await prisma.edition.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EditionWhereInput | No |
| orderBy | EditionOrderByWithRelationInput[] | EditionOrderByWithRelationInput | No |
| cursor | EditionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EditionScalarFieldEnum[] | No |
Find zero or more Edition
// Get all Edition
const Edition = await prisma.edition.findMany()
// Get first 10 Edition
const Edition = await prisma.edition.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | EditionWhereInput | No |
| orderBy | EditionOrderByWithRelationInput[] | EditionOrderByWithRelationInput | No |
| cursor | EditionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | EditionScalarFieldEnum[] | No |
Create one Edition
// Create one Edition
const Edition = await prisma.edition.create({
data: {
// ... data to create a Edition
}
})
| Name | Type | Required |
|---|---|---|
| data | EditionCreateInput | EditionUncheckedCreateInput | Yes |
Delete one Edition
// Delete one Edition
const Edition = await prisma.edition.delete({
where: {
// ... filter to delete one Edition
}
})
| Name | Type | Required |
|---|---|---|
| where | EditionWhereUniqueInput | Yes |
Update one Edition
// Update one Edition
const edition = await prisma.edition.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EditionUpdateInput | EditionUncheckedUpdateInput | Yes |
| where | EditionWhereUniqueInput | Yes |
Delete zero or more Edition
// Delete a few Edition
const { count } = await prisma.edition.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | EditionWhereInput | No |
Update zero or one Edition
const { count } = await prisma.edition.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | EditionUpdateManyMutationInput | EditionUncheckedUpdateManyInput | Yes |
| where | EditionWhereInput | No |
Create or update one Edition
// Update or create a Edition
const edition = await prisma.edition.upsert({
create: {
// ... data to create a Edition
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Edition we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | EditionWhereUniqueInput | Yes |
| create | EditionCreateInput | EditionUncheckedCreateInput | Yes |
| update | EditionUpdateInput | EditionUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| filename | String |
|
Yes | File name |
| stem | String |
|
Yes | Filename without extension |
| extension | String |
|
Yes | @length(1, 7) File extension |
| size | Int |
|
Yes | @gt(0) Filesize in bytes |
| mime | String |
|
Yes | File MIME type |
| resourceType | FileResourceType |
|
Yes | Generic version of MIME |
| metadata | Json? |
|
No | Consolidated embedded metadata associated with the file. It includes exif, iptc, and xmp data. @zod.custom.use(z.record(z.union([z.string(), z.number()]))) |
| key | String |
|
Yes | - |
| bucket | String |
|
Yes | S3 Key |
| region | CloudFileRegion |
|
Yes | S3 Bucket |
| publicUrl | String? |
|
No | - |
| privacy | FilePrivacy |
|
Yes | @zod.string.url() |
| photo | Photo? |
|
No | Privacy on blob store |
| PDF? |
|
No | - | |
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| deletedAt | DateTime? |
|
No | - |
| zenstack_guard | Boolean |
|
Yes | - |
| zenstack_transaction | String? |
|
No | - |
Find zero or one CloudFile
// Get one CloudFile
const cloudFile = await prisma.cloudFile.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CloudFileWhereUniqueInput | Yes |
Find first CloudFile
// Get one CloudFile
const cloudFile = await prisma.cloudFile.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CloudFileWhereInput | No |
| orderBy | CloudFileOrderByWithRelationInput[] | CloudFileOrderByWithRelationInput | No |
| cursor | CloudFileWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CloudFileScalarFieldEnum[] | No |
Find zero or more CloudFile
// Get all CloudFile
const CloudFile = await prisma.cloudFile.findMany()
// Get first 10 CloudFile
const CloudFile = await prisma.cloudFile.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CloudFileWhereInput | No |
| orderBy | CloudFileOrderByWithRelationInput[] | CloudFileOrderByWithRelationInput | No |
| cursor | CloudFileWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CloudFileScalarFieldEnum[] | No |
Create one CloudFile
// Create one CloudFile
const CloudFile = await prisma.cloudFile.create({
data: {
// ... data to create a CloudFile
}
})
| Name | Type | Required |
|---|---|---|
| data | CloudFileCreateInput | CloudFileUncheckedCreateInput | Yes |
Delete one CloudFile
// Delete one CloudFile
const CloudFile = await prisma.cloudFile.delete({
where: {
// ... filter to delete one CloudFile
}
})
| Name | Type | Required |
|---|---|---|
| where | CloudFileWhereUniqueInput | Yes |
Update one CloudFile
// Update one CloudFile
const cloudFile = await prisma.cloudFile.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CloudFileUpdateInput | CloudFileUncheckedUpdateInput | Yes |
| where | CloudFileWhereUniqueInput | Yes |
Delete zero or more CloudFile
// Delete a few CloudFile
const { count } = await prisma.cloudFile.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CloudFileWhereInput | No |
Update zero or one CloudFile
const { count } = await prisma.cloudFile.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CloudFileUpdateManyMutationInput | CloudFileUncheckedUpdateManyInput | Yes |
| where | CloudFileWhereInput | No |
Create or update one CloudFile
// Update or create a CloudFile
const cloudFile = await prisma.cloudFile.upsert({
create: {
// ... data to create a CloudFile
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the CloudFile we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CloudFileWhereUniqueInput | Yes |
| create | CloudFileCreateInput | CloudFileUncheckedCreateInput | Yes |
| update | CloudFileUpdateInput | CloudFileUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| height | Int |
|
Yes | @gt(0) |
| width | Int |
|
Yes | @gt(0) |
| tags | String[] |
|
Yes | - |
| fileId | String |
|
Yes | - |
| file | CloudFile |
|
Yes | @zod.string.cuid() |
| pageArtworks | PageArtwork[] |
|
Yes | - |
| concepts | Concept[] |
|
Yes | - |
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| deletedAt | DateTime? |
|
No | - |
| zenstack_guard | Boolean |
|
Yes | - |
| zenstack_transaction | String? |
|
No | - |
Find zero or one Photo
// Get one Photo
const photo = await prisma.photo.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PhotoWhereUniqueInput | Yes |
Find first Photo
// Get one Photo
const photo = await prisma.photo.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PhotoWhereInput | No |
| orderBy | PhotoOrderByWithRelationInput[] | PhotoOrderByWithRelationInput | No |
| cursor | PhotoWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PhotoScalarFieldEnum[] | No |
Find zero or more Photo
// Get all Photo
const Photo = await prisma.photo.findMany()
// Get first 10 Photo
const Photo = await prisma.photo.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PhotoWhereInput | No |
| orderBy | PhotoOrderByWithRelationInput[] | PhotoOrderByWithRelationInput | No |
| cursor | PhotoWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PhotoScalarFieldEnum[] | No |
Create one Photo
// Create one Photo
const Photo = await prisma.photo.create({
data: {
// ... data to create a Photo
}
})
| Name | Type | Required |
|---|---|---|
| data | PhotoCreateInput | PhotoUncheckedCreateInput | Yes |
Delete one Photo
// Delete one Photo
const Photo = await prisma.photo.delete({
where: {
// ... filter to delete one Photo
}
})
| Name | Type | Required |
|---|---|---|
| where | PhotoWhereUniqueInput | Yes |
Update one Photo
// Update one Photo
const photo = await prisma.photo.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PhotoUpdateInput | PhotoUncheckedUpdateInput | Yes |
| where | PhotoWhereUniqueInput | Yes |
Delete zero or more Photo
// Delete a few Photo
const { count } = await prisma.photo.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PhotoWhereInput | No |
Update zero or one Photo
const { count } = await prisma.photo.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PhotoUpdateManyMutationInput | PhotoUncheckedUpdateManyInput | Yes |
| where | PhotoWhereInput | No |
Create or update one Photo
// Update or create a Photo
const photo = await prisma.photo.upsert({
create: {
// ... data to create a Photo
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Photo we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PhotoWhereUniqueInput | Yes |
| create | PhotoCreateInput | PhotoUncheckedCreateInput | Yes |
| update | PhotoUpdateInput | PhotoUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| height | Int |
|
Yes | @gt(0) |
| width | Int |
|
Yes | @gt(0) |
| pages | Int |
|
Yes | @gt(0) |
| tags | String[] |
|
Yes | - |
| fileId | String |
|
Yes | - |
| file | CloudFile |
|
Yes | @zod.string.cuid() |
| edition | Edition? |
|
No | - |
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| deletedAt | DateTime? |
|
No | - |
| zenstack_guard | Boolean |
|
Yes | - |
| zenstack_transaction | String? |
|
No | - |
Find zero or one PDF
// Get one PDF
const pDF = await prisma.pDF.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PDFWhereUniqueInput | Yes |
Find first PDF
// Get one PDF
const pDF = await prisma.pDF.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PDFWhereInput | No |
| orderBy | PDFOrderByWithRelationInput[] | PDFOrderByWithRelationInput | No |
| cursor | PDFWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PDFScalarFieldEnum[] | No |
Find zero or more PDF
// Get all PDF
const PDF = await prisma.pDF.findMany()
// Get first 10 PDF
const PDF = await prisma.pDF.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PDFWhereInput | No |
| orderBy | PDFOrderByWithRelationInput[] | PDFOrderByWithRelationInput | No |
| cursor | PDFWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PDFScalarFieldEnum[] | No |
Create one PDF
// Create one PDF
const PDF = await prisma.pDF.create({
data: {
// ... data to create a PDF
}
})
| Name | Type | Required |
|---|---|---|
| data | PDFCreateInput | PDFUncheckedCreateInput | Yes |
Delete one PDF
// Delete one PDF
const PDF = await prisma.pDF.delete({
where: {
// ... filter to delete one PDF
}
})
| Name | Type | Required |
|---|---|---|
| where | PDFWhereUniqueInput | Yes |
Update one PDF
// Update one PDF
const pDF = await prisma.pDF.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PDFUpdateInput | PDFUncheckedUpdateInput | Yes |
| where | PDFWhereUniqueInput | Yes |
Delete zero or more PDF
// Delete a few PDF
const { count } = await prisma.pDF.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PDFWhereInput | No |
Update zero or one PDF
const { count } = await prisma.pDF.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PDFUpdateManyMutationInput | PDFUncheckedUpdateManyInput | Yes |
| where | PDFWhereInput | No |
Create or update one PDF
// Update or create a PDF
const pDF = await prisma.pDF.upsert({
create: {
// ... data to create a PDF
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PDF we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PDFWhereUniqueInput | Yes |
| create | PDFCreateInput | PDFUncheckedCreateInput | Yes |
| update | PDFUpdateInput | PDFUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| artistId | String? |
|
No | - |
| authorId | String? |
|
No | @zod.string.cuid() |
| artist | Artist? |
|
No | @zod.string.cuid() |
| author | Author? |
|
No | - |
| pages | Page[] |
|
Yes | - |
| pageArtworks | PageArtwork[] |
|
Yes | - |
| pageTexts | PageText[] |
|
Yes | - |
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| deletedAt | DateTime? |
|
No | - |
Find zero or one Story
// Get one Story
const story = await prisma.story.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | StoryWhereUniqueInput | Yes |
Find first Story
// Get one Story
const story = await prisma.story.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | StoryWhereInput | No |
| orderBy | StoryOrderByWithRelationInput[] | StoryOrderByWithRelationInput | No |
| cursor | StoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | StoryScalarFieldEnum[] | No |
Find zero or more Story
// Get all Story
const Story = await prisma.story.findMany()
// Get first 10 Story
const Story = await prisma.story.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | StoryWhereInput | No |
| orderBy | StoryOrderByWithRelationInput[] | StoryOrderByWithRelationInput | No |
| cursor | StoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | StoryScalarFieldEnum[] | No |
Create one Story
// Create one Story
const Story = await prisma.story.create({
data: {
// ... data to create a Story
}
})
| Name | Type | Required |
|---|---|---|
| data | StoryCreateInput | StoryUncheckedCreateInput | Yes |
Delete one Story
// Delete one Story
const Story = await prisma.story.delete({
where: {
// ... filter to delete one Story
}
})
| Name | Type | Required |
|---|---|---|
| where | StoryWhereUniqueInput | Yes |
Update one Story
// Update one Story
const story = await prisma.story.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | StoryUpdateInput | StoryUncheckedUpdateInput | Yes |
| where | StoryWhereUniqueInput | Yes |
Delete zero or more Story
// Delete a few Story
const { count } = await prisma.story.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | StoryWhereInput | No |
Update zero or one Story
const { count } = await prisma.story.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | StoryUpdateManyMutationInput | StoryUncheckedUpdateManyInput | Yes |
| where | StoryWhereInput | No |
Create or update one Story
// Update or create a Story
const story = await prisma.story.upsert({
create: {
// ... data to create a Story
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Story we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | StoryWhereUniqueInput | Yes |
| create | StoryCreateInput | StoryUncheckedCreateInput | Yes |
| update | StoryUpdateInput | StoryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| status | PageStatus |
|
Yes | - |
| pageId | String |
|
Yes | - |
| storyId | String |
|
Yes | @zod.string.cuid() |
| artistId | String |
|
Yes | @zod.string.cuid() |
| photoId | String |
|
Yes | @zod.string.cuid() |
| page | Page |
|
Yes | @zod.string.cuid() |
| story | Story |
|
Yes | - |
| artist | Artist |
|
Yes | - |
| photo | Photo |
|
Yes | - |
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| deletedAt | DateTime? |
|
No | - |
Find zero or one PageArtwork
// Get one PageArtwork
const pageArtwork = await prisma.pageArtwork.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PageArtworkWhereUniqueInput | Yes |
Find first PageArtwork
// Get one PageArtwork
const pageArtwork = await prisma.pageArtwork.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PageArtworkWhereInput | No |
| orderBy | PageArtworkOrderByWithRelationInput[] | PageArtworkOrderByWithRelationInput | No |
| cursor | PageArtworkWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PageArtworkScalarFieldEnum[] | No |
Find zero or more PageArtwork
// Get all PageArtwork
const PageArtwork = await prisma.pageArtwork.findMany()
// Get first 10 PageArtwork
const PageArtwork = await prisma.pageArtwork.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PageArtworkWhereInput | No |
| orderBy | PageArtworkOrderByWithRelationInput[] | PageArtworkOrderByWithRelationInput | No |
| cursor | PageArtworkWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PageArtworkScalarFieldEnum[] | No |
Create one PageArtwork
// Create one PageArtwork
const PageArtwork = await prisma.pageArtwork.create({
data: {
// ... data to create a PageArtwork
}
})
| Name | Type | Required |
|---|---|---|
| data | PageArtworkCreateInput | PageArtworkUncheckedCreateInput | Yes |
Delete one PageArtwork
// Delete one PageArtwork
const PageArtwork = await prisma.pageArtwork.delete({
where: {
// ... filter to delete one PageArtwork
}
})
| Name | Type | Required |
|---|---|---|
| where | PageArtworkWhereUniqueInput | Yes |
Update one PageArtwork
// Update one PageArtwork
const pageArtwork = await prisma.pageArtwork.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PageArtworkUpdateInput | PageArtworkUncheckedUpdateInput | Yes |
| where | PageArtworkWhereUniqueInput | Yes |
Delete zero or more PageArtwork
// Delete a few PageArtwork
const { count } = await prisma.pageArtwork.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PageArtworkWhereInput | No |
Update zero or one PageArtwork
const { count } = await prisma.pageArtwork.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PageArtworkUpdateManyMutationInput | PageArtworkUncheckedUpdateManyInput | Yes |
| where | PageArtworkWhereInput | No |
Create or update one PageArtwork
// Update or create a PageArtwork
const pageArtwork = await prisma.pageArtwork.upsert({
create: {
// ... data to create a PageArtwork
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PageArtwork we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PageArtworkWhereUniqueInput | Yes |
| create | PageArtworkCreateInput | PageArtworkUncheckedCreateInput | Yes |
| update | PageArtworkUpdateInput | PageArtworkUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| status | PageStatus |
|
Yes | - |
| locale | Locale |
|
Yes | - |
| text | String |
|
Yes | - |
| type | PageTextType |
|
Yes | @zod.string.min(1).max(5000) |
| pageId | String |
|
Yes | - |
| storyId | String |
|
Yes | @zod.string.cuid() |
| authorId | String? |
|
No | @zod.string.cuid() |
| translatorId | String? |
|
No | @zod.string.cuid() |
| page | Page |
|
Yes | @zod.string.cuid() |
| story | Story |
|
Yes | - |
| author | Author? |
|
No | - |
| translator | Translator? |
|
No | - |
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| deletedAt | DateTime? |
|
No | - |
Find zero or one PageText
// Get one PageText
const pageText = await prisma.pageText.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PageTextWhereUniqueInput | Yes |
Find first PageText
// Get one PageText
const pageText = await prisma.pageText.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PageTextWhereInput | No |
| orderBy | PageTextOrderByWithRelationInput[] | PageTextOrderByWithRelationInput | No |
| cursor | PageTextWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PageTextScalarFieldEnum[] | No |
Find zero or more PageText
// Get all PageText
const PageText = await prisma.pageText.findMany()
// Get first 10 PageText
const PageText = await prisma.pageText.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PageTextWhereInput | No |
| orderBy | PageTextOrderByWithRelationInput[] | PageTextOrderByWithRelationInput | No |
| cursor | PageTextWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PageTextScalarFieldEnum[] | No |
Create one PageText
// Create one PageText
const PageText = await prisma.pageText.create({
data: {
// ... data to create a PageText
}
})
| Name | Type | Required |
|---|---|---|
| data | PageTextCreateInput | PageTextUncheckedCreateInput | Yes |
Delete one PageText
// Delete one PageText
const PageText = await prisma.pageText.delete({
where: {
// ... filter to delete one PageText
}
})
| Name | Type | Required |
|---|---|---|
| where | PageTextWhereUniqueInput | Yes |
Update one PageText
// Update one PageText
const pageText = await prisma.pageText.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PageTextUpdateInput | PageTextUncheckedUpdateInput | Yes |
| where | PageTextWhereUniqueInput | Yes |
Delete zero or more PageText
// Delete a few PageText
const { count } = await prisma.pageText.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PageTextWhereInput | No |
Update zero or one PageText
const { count } = await prisma.pageText.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PageTextUpdateManyMutationInput | PageTextUncheckedUpdateManyInput | Yes |
| where | PageTextWhereInput | No |
Create or update one PageText
// Update or create a PageText
const pageText = await prisma.pageText.upsert({
create: {
// ... data to create a PageText
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the PageText we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PageTextWhereUniqueInput | Yes |
| create | PageTextCreateInput | PageTextUncheckedCreateInput | Yes |
| update | PageTextUpdateInput | PageTextUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| status | PageStatus |
|
Yes | - |
| type | PageType |
|
Yes | - |
| pageNumber | Int |
|
Yes | - |
| storyId | String |
|
Yes | @zod.number.gte(1).lte(100) |
| story | Story |
|
Yes | @zod.string.cuid() |
| artworks | PageArtwork[] |
|
Yes | - |
| texts | PageText[] |
|
Yes | - |
| id | String |
|
Yes | - |
| createdAt | DateTime |
|
Yes | - |
| updatedAt | DateTime |
|
Yes | - |
| deletedAt | DateTime? |
|
No | - |
Find zero or one Page
// Get one Page
const page = await prisma.page.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PageWhereUniqueInput | Yes |
Find first Page
// Get one Page
const page = await prisma.page.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PageWhereInput | No |
| orderBy | PageOrderByWithRelationInput[] | PageOrderByWithRelationInput | No |
| cursor | PageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PageScalarFieldEnum[] | No |
Find zero or more Page
// Get all Page
const Page = await prisma.page.findMany()
// Get first 10 Page
const Page = await prisma.page.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | PageWhereInput | No |
| orderBy | PageOrderByWithRelationInput[] | PageOrderByWithRelationInput | No |
| cursor | PageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | PageScalarFieldEnum[] | No |
Create one Page
// Create one Page
const Page = await prisma.page.create({
data: {
// ... data to create a Page
}
})
| Name | Type | Required |
|---|---|---|
| data | PageCreateInput | PageUncheckedCreateInput | Yes |
Delete one Page
// Delete one Page
const Page = await prisma.page.delete({
where: {
// ... filter to delete one Page
}
})
| Name | Type | Required |
|---|---|---|
| where | PageWhereUniqueInput | Yes |
Update one Page
// Update one Page
const page = await prisma.page.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PageUpdateInput | PageUncheckedUpdateInput | Yes |
| where | PageWhereUniqueInput | Yes |
Delete zero or more Page
// Delete a few Page
const { count } = await prisma.page.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | PageWhereInput | No |
Update zero or one Page
const { count } = await prisma.page.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | PageUpdateManyMutationInput | PageUncheckedUpdateManyInput | Yes |
| where | PageWhereInput | No |
Create or update one Page
// Update or create a Page
const page = await prisma.page.upsert({
create: {
// ... data to create a Page
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Page we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | PageWhereUniqueInput | Yes |
| create | PageCreateInput | PageUncheckedCreateInput | Yes |
| update | PageUpdateInput | PageUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | UserWhereInput | UserWhereInput[] | No |
| OR | UserWhereInput[] | No |
| NOT | UserWhereInput | UserWhereInput[] | No |
| name | StringFilter | String | No |
| StringFilter | String | No | |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| zenstack_guard | BoolFilter | Boolean | No |
| zenstack_transaction | StringNullableFilter | String | Null | Yes |
| artist | ArtistRelationFilter | ArtistWhereInput | Null | Yes |
| author | AuthorRelationFilter | AuthorWhereInput | Null | Yes |
| editions | EditionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| name | SortOrder | No |
| SortOrder | No | |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| artist | ArtistOrderByWithRelationInput | No |
| author | AuthorOrderByWithRelationInput | No |
| editions | EditionOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| String | No | |
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| name | SortOrder | No |
| SortOrder | No | |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| _count | UserCountOrderByAggregateInput | No |
| _max | UserMaxOrderByAggregateInput | No |
| _min | UserMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| OR | UserScalarWhereWithAggregatesInput[] | No |
| NOT | UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] | No |
| name | StringWithAggregatesFilter | String | No |
| StringWithAggregatesFilter | String | No | |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| deletedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| zenstack_guard | BoolWithAggregatesFilter | Boolean | No |
| zenstack_transaction | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | AuthorWhereInput | AuthorWhereInput[] | No |
| OR | AuthorWhereInput[] | No |
| NOT | AuthorWhereInput | AuthorWhereInput[] | No |
| userId | StringFilter | String | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| stories | StoryListRelationFilter | No |
| pageTexts | PageTextListRelationFilter | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| stories | StoryOrderByRelationAggregateInput | No |
| pageTexts | PageTextOrderByRelationAggregateInput | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| _count | AuthorCountOrderByAggregateInput | No |
| _max | AuthorMaxOrderByAggregateInput | No |
| _min | AuthorMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AuthorScalarWhereWithAggregatesInput | AuthorScalarWhereWithAggregatesInput[] | No |
| OR | AuthorScalarWhereWithAggregatesInput[] | No |
| NOT | AuthorScalarWhereWithAggregatesInput | AuthorScalarWhereWithAggregatesInput[] | No |
| userId | StringWithAggregatesFilter | String | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| deletedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | ArtistWhereInput | ArtistWhereInput[] | No |
| OR | ArtistWhereInput[] | No |
| NOT | ArtistWhereInput | ArtistWhereInput[] | No |
| userId | StringFilter | String | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| stories | StoryListRelationFilter | No |
| pageArtworks | PageArtworkListRelationFilter | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| stories | StoryOrderByRelationAggregateInput | No |
| pageArtworks | PageArtworkOrderByRelationAggregateInput | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| _count | ArtistCountOrderByAggregateInput | No |
| _max | ArtistMaxOrderByAggregateInput | No |
| _min | ArtistMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ArtistScalarWhereWithAggregatesInput | ArtistScalarWhereWithAggregatesInput[] | No |
| OR | ArtistScalarWhereWithAggregatesInput[] | No |
| NOT | ArtistScalarWhereWithAggregatesInput | ArtistScalarWhereWithAggregatesInput[] | No |
| userId | StringWithAggregatesFilter | String | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| deletedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | TranslatorWhereInput | TranslatorWhereInput[] | No |
| OR | TranslatorWhereInput[] | No |
| NOT | TranslatorWhereInput | TranslatorWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| pageTexts | PageTextListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| pageTexts | PageTextOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| _count | TranslatorCountOrderByAggregateInput | No |
| _max | TranslatorMaxOrderByAggregateInput | No |
| _min | TranslatorMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TranslatorScalarWhereWithAggregatesInput | TranslatorScalarWhereWithAggregatesInput[] | No |
| OR | TranslatorScalarWhereWithAggregatesInput[] | No |
| NOT | TranslatorScalarWhereWithAggregatesInput | TranslatorScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| deletedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptWhereInput | ConceptWhereInput[] | No |
| OR | ConceptWhereInput[] | No |
| NOT | ConceptWhereInput | ConceptWhereInput[] | No |
| name | StringFilter | String | No |
| type | EnumConceptTypeFilter | ConceptType | No |
| status | EnumConceptStatusFilter | ConceptStatus | No |
| description | StringNullableFilter | String | Null | Yes |
| prompt | StringFilter | String | No |
| identifier | StringFilter | String | No |
| classNoun | StringFilter | String | No |
| negativePrompt | StringFilter | String | No |
| instancePrompt | StringFilter | String | No |
| classPrompt | StringFilter | String | No |
| positivePrompts | StringNullableListFilter | No |
| negativePrompts | StringNullableListFilter | No |
| dreamboothTrainingId | StringNullableFilter | String | Null | Yes |
| dreamboothModelURI | StringNullableFilter | String | Null | Yes |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| zenstack_guard | BoolFilter | Boolean | No |
| zenstack_transaction | StringNullableFilter | String | Null | Yes |
| dreamboothTraining | DreamBoothTrainingRelationFilter | DreamBoothTrainingWhereInput | Null | Yes |
| photos | PhotoListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| name | SortOrder | No |
| type | SortOrder | No |
| status | SortOrder | No |
| description | SortOrder | No |
| prompt | SortOrder | No |
| identifier | SortOrder | No |
| classNoun | SortOrder | No |
| negativePrompt | SortOrder | No |
| instancePrompt | SortOrder | No |
| classPrompt | SortOrder | No |
| positivePrompts | SortOrder | No |
| negativePrompts | SortOrder | No |
| dreamboothTrainingId | SortOrder | No |
| dreamboothModelURI | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| dreamboothTraining | DreamBoothTrainingOrderByWithRelationInput | No |
| photos | PhotoOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| name | SortOrder | No |
| type | SortOrder | No |
| status | SortOrder | No |
| description | SortOrder | No |
| prompt | SortOrder | No |
| identifier | SortOrder | No |
| classNoun | SortOrder | No |
| negativePrompt | SortOrder | No |
| instancePrompt | SortOrder | No |
| classPrompt | SortOrder | No |
| positivePrompts | SortOrder | No |
| negativePrompts | SortOrder | No |
| dreamboothTrainingId | SortOrder | No |
| dreamboothModelURI | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| _count | ConceptCountOrderByAggregateInput | No |
| _max | ConceptMaxOrderByAggregateInput | No |
| _min | ConceptMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PredictionWhereInput | PredictionWhereInput[] | No |
| OR | PredictionWhereInput[] | No |
| NOT | PredictionWhereInput | PredictionWhereInput[] | No |
| id | StringFilter | String | No |
| uuid | StringFilter | String | No |
| input | JsonNullableFilter | No |
| output | JsonNullableFilter | No |
| status | StringNullableFilter | String | Null | Yes |
| created_at | DateTimeNullableFilter | DateTime | Null | Yes |
| started_at | DateTimeNullableFilter | DateTime | Null | Yes |
| completed_at | DateTimeNullableFilter | DateTime | Null | Yes |
| version | StringNullableFilter | String | Null | Yes |
| metrics | JsonNullableFilter | No |
| error | StringNullableFilter | String | Null | Yes |
| logs | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| input | SortOrder | No |
| output | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| started_at | SortOrder | No |
| completed_at | SortOrder | No |
| version | SortOrder | No |
| metrics | SortOrder | No |
| error | SortOrder | No |
| logs | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| input | SortOrder | No |
| output | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| started_at | SortOrder | No |
| completed_at | SortOrder | No |
| version | SortOrder | No |
| metrics | SortOrder | No |
| error | SortOrder | No |
| logs | SortOrder | No |
| _count | PredictionCountOrderByAggregateInput | No |
| _max | PredictionMaxOrderByAggregateInput | No |
| _min | PredictionMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PredictionScalarWhereWithAggregatesInput | PredictionScalarWhereWithAggregatesInput[] | No |
| OR | PredictionScalarWhereWithAggregatesInput[] | No |
| NOT | PredictionScalarWhereWithAggregatesInput | PredictionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| uuid | StringWithAggregatesFilter | String | No |
| input | JsonNullableWithAggregatesFilter | No |
| output | JsonNullableWithAggregatesFilter | No |
| status | StringNullableWithAggregatesFilter | String | Null | Yes |
| created_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| started_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| completed_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| version | StringNullableWithAggregatesFilter | String | Null | Yes |
| metrics | JsonNullableWithAggregatesFilter | No |
| error | StringNullableWithAggregatesFilter | String | Null | Yes |
| logs | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | DreamBoothTrainingWhereInput | DreamBoothTrainingWhereInput[] | No |
| OR | DreamBoothTrainingWhereInput[] | No |
| NOT | DreamBoothTrainingWhereInput | DreamBoothTrainingWhereInput[] | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| instance_prompt | StringFilter | String | No |
| class_prompt | StringFilter | String | No |
| instance_data | StringFilter | String | No |
| class_data | StringFilter | String | No |
| num_class_images | IntFilter | Int | No |
| save_sample_prompt | StringNullableFilter | String | Null | Yes |
| save_sample_negative_prompt | StringNullableFilter | String | Null | Yes |
| n_save_sample | IntFilter | Int | No |
| save_guidance_scale | FloatFilter | Float | No |
| save_infer_steps | IntFilter | Int | No |
| pad_tokens | BoolFilter | Boolean | No |
| with_prior_preservation | BoolFilter | Boolean | No |
| prior_loss_weight | FloatFilter | Float | No |
| seed | IntFilter | Int | No |
| resolution | IntFilter | Int | No |
| center_crop | BoolFilter | Boolean | No |
| train_text_encoder | BoolFilter | Boolean | No |
| train_batch_size | IntFilter | Int | No |
| sample_batch_size | IntFilter | Int | No |
| num_train_epochs | IntFilter | Int | No |
| max_train_steps | IntFilter | Int | No |
| gradient_accumulation_steps | IntFilter | Int | No |
| gradient_checkpointing | BoolFilter | Boolean | No |
| learning_rate | FloatFilter | Float | No |
| scale_lr | BoolFilter | Boolean | No |
| lr_scheduler | EnumLRSchedulerFilter | LRScheduler | No |
| lr_warmup_steps | IntFilter | Int | No |
| use_8bit_adam | BoolFilter | Boolean | No |
| adam_beta1 | FloatFilter | Float | No |
| adam_beta2 | FloatFilter | Float | No |
| adam_weight_decay | FloatFilter | Float | No |
| max_grad_norm | FloatFilter | Float | No |
| Concept | ConceptListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| instance_prompt | SortOrder | No |
| class_prompt | SortOrder | No |
| instance_data | SortOrder | No |
| class_data | SortOrder | No |
| num_class_images | SortOrder | No |
| save_sample_prompt | SortOrder | No |
| save_sample_negative_prompt | SortOrder | No |
| n_save_sample | SortOrder | No |
| save_guidance_scale | SortOrder | No |
| save_infer_steps | SortOrder | No |
| pad_tokens | SortOrder | No |
| with_prior_preservation | SortOrder | No |
| prior_loss_weight | SortOrder | No |
| seed | SortOrder | No |
| resolution | SortOrder | No |
| center_crop | SortOrder | No |
| train_text_encoder | SortOrder | No |
| train_batch_size | SortOrder | No |
| sample_batch_size | SortOrder | No |
| num_train_epochs | SortOrder | No |
| max_train_steps | SortOrder | No |
| gradient_accumulation_steps | SortOrder | No |
| gradient_checkpointing | SortOrder | No |
| learning_rate | SortOrder | No |
| scale_lr | SortOrder | No |
| lr_scheduler | SortOrder | No |
| lr_warmup_steps | SortOrder | No |
| use_8bit_adam | SortOrder | No |
| adam_beta1 | SortOrder | No |
| adam_beta2 | SortOrder | No |
| adam_weight_decay | SortOrder | No |
| max_grad_norm | SortOrder | No |
| Concept | ConceptOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| instance_prompt | SortOrder | No |
| class_prompt | SortOrder | No |
| instance_data | SortOrder | No |
| class_data | SortOrder | No |
| num_class_images | SortOrder | No |
| save_sample_prompt | SortOrder | No |
| save_sample_negative_prompt | SortOrder | No |
| n_save_sample | SortOrder | No |
| save_guidance_scale | SortOrder | No |
| save_infer_steps | SortOrder | No |
| pad_tokens | SortOrder | No |
| with_prior_preservation | SortOrder | No |
| prior_loss_weight | SortOrder | No |
| seed | SortOrder | No |
| resolution | SortOrder | No |
| center_crop | SortOrder | No |
| train_text_encoder | SortOrder | No |
| train_batch_size | SortOrder | No |
| sample_batch_size | SortOrder | No |
| num_train_epochs | SortOrder | No |
| max_train_steps | SortOrder | No |
| gradient_accumulation_steps | SortOrder | No |
| gradient_checkpointing | SortOrder | No |
| learning_rate | SortOrder | No |
| scale_lr | SortOrder | No |
| lr_scheduler | SortOrder | No |
| lr_warmup_steps | SortOrder | No |
| use_8bit_adam | SortOrder | No |
| adam_beta1 | SortOrder | No |
| adam_beta2 | SortOrder | No |
| adam_weight_decay | SortOrder | No |
| max_grad_norm | SortOrder | No |
| _count | DreamBoothTrainingCountOrderByAggregateInput | No |
| _avg | DreamBoothTrainingAvgOrderByAggregateInput | No |
| _max | DreamBoothTrainingMaxOrderByAggregateInput | No |
| _min | DreamBoothTrainingMinOrderByAggregateInput | No |
| _sum | DreamBoothTrainingSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EditionWhereInput | EditionWhereInput[] | No |
| OR | EditionWhereInput[] | No |
| NOT | EditionWhereInput | EditionWhereInput[] | No |
| userId | StringFilter | String | No |
| pdfId | StringFilter | String | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| user | UserRelationFilter | UserWhereInput | No |
| PDFRelationFilter | PDFWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| pdfId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| PDFOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| pdfId | String | No |
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| pdfId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| _count | EditionCountOrderByAggregateInput | No |
| _max | EditionMaxOrderByAggregateInput | No |
| _min | EditionMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EditionScalarWhereWithAggregatesInput | EditionScalarWhereWithAggregatesInput[] | No |
| OR | EditionScalarWhereWithAggregatesInput[] | No |
| NOT | EditionScalarWhereWithAggregatesInput | EditionScalarWhereWithAggregatesInput[] | No |
| userId | StringWithAggregatesFilter | String | No |
| pdfId | StringWithAggregatesFilter | String | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| deletedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | CloudFileWhereInput | CloudFileWhereInput[] | No |
| OR | CloudFileWhereInput[] | No |
| NOT | CloudFileWhereInput | CloudFileWhereInput[] | No |
| filename | StringFilter | String | No |
| stem | StringFilter | String | No |
| extension | StringFilter | String | No |
| size | IntFilter | Int | No |
| mime | StringFilter | String | No |
| resourceType | EnumFileResourceTypeFilter | FileResourceType | No |
| metadata | JsonNullableFilter | No |
| key | StringFilter | String | No |
| bucket | StringFilter | String | No |
| region | EnumCloudFileRegionFilter | CloudFileRegion | No |
| publicUrl | StringNullableFilter | String | Null | Yes |
| privacy | EnumFilePrivacyFilter | FilePrivacy | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| zenstack_guard | BoolFilter | Boolean | No |
| zenstack_transaction | StringNullableFilter | String | Null | Yes |
| photo | PhotoRelationFilter | PhotoWhereInput | Null | Yes |
| PDFRelationFilter | PDFWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| filename | SortOrder | No |
| stem | SortOrder | No |
| extension | SortOrder | No |
| size | SortOrder | No |
| mime | SortOrder | No |
| resourceType | SortOrder | No |
| metadata | SortOrder | No |
| key | SortOrder | No |
| bucket | SortOrder | No |
| region | SortOrder | No |
| publicUrl | SortOrder | No |
| privacy | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| photo | PhotoOrderByWithRelationInput | No |
| PDFOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| publicUrl | String | No |
| id | String | No |
| region_bucket_key | CloudFileRegionBucketKeyCompoundUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| filename | SortOrder | No |
| stem | SortOrder | No |
| extension | SortOrder | No |
| size | SortOrder | No |
| mime | SortOrder | No |
| resourceType | SortOrder | No |
| metadata | SortOrder | No |
| key | SortOrder | No |
| bucket | SortOrder | No |
| region | SortOrder | No |
| publicUrl | SortOrder | No |
| privacy | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| _count | CloudFileCountOrderByAggregateInput | No |
| _avg | CloudFileAvgOrderByAggregateInput | No |
| _max | CloudFileMaxOrderByAggregateInput | No |
| _min | CloudFileMinOrderByAggregateInput | No |
| _sum | CloudFileSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PhotoWhereInput | PhotoWhereInput[] | No |
| OR | PhotoWhereInput[] | No |
| NOT | PhotoWhereInput | PhotoWhereInput[] | No |
| height | IntFilter | Int | No |
| width | IntFilter | Int | No |
| tags | StringNullableListFilter | No |
| fileId | StringFilter | String | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| zenstack_guard | BoolFilter | Boolean | No |
| zenstack_transaction | StringNullableFilter | String | Null | Yes |
| file | CloudFileRelationFilter | CloudFileWhereInput | No |
| pageArtworks | PageArtworkListRelationFilter | No |
| concepts | ConceptListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| height | SortOrder | No |
| width | SortOrder | No |
| tags | SortOrder | No |
| fileId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| file | CloudFileOrderByWithRelationInput | No |
| pageArtworks | PageArtworkOrderByRelationAggregateInput | No |
| concepts | ConceptOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| fileId | String | No |
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| height | SortOrder | No |
| width | SortOrder | No |
| tags | SortOrder | No |
| fileId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| _count | PhotoCountOrderByAggregateInput | No |
| _avg | PhotoAvgOrderByAggregateInput | No |
| _max | PhotoMaxOrderByAggregateInput | No |
| _min | PhotoMinOrderByAggregateInput | No |
| _sum | PhotoSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PhotoScalarWhereWithAggregatesInput | PhotoScalarWhereWithAggregatesInput[] | No |
| OR | PhotoScalarWhereWithAggregatesInput[] | No |
| NOT | PhotoScalarWhereWithAggregatesInput | PhotoScalarWhereWithAggregatesInput[] | No |
| height | IntWithAggregatesFilter | Int | No |
| width | IntWithAggregatesFilter | Int | No |
| tags | StringNullableListFilter | No |
| fileId | StringWithAggregatesFilter | String | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| deletedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| zenstack_guard | BoolWithAggregatesFilter | Boolean | No |
| zenstack_transaction | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | PDFWhereInput | PDFWhereInput[] | No |
| OR | PDFWhereInput[] | No |
| NOT | PDFWhereInput | PDFWhereInput[] | No |
| height | IntFilter | Int | No |
| width | IntFilter | Int | No |
| pages | IntFilter | Int | No |
| tags | StringNullableListFilter | No |
| fileId | StringFilter | String | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| zenstack_guard | BoolFilter | Boolean | No |
| zenstack_transaction | StringNullableFilter | String | Null | Yes |
| file | CloudFileRelationFilter | CloudFileWhereInput | No |
| edition | EditionRelationFilter | EditionWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | SortOrder | No |
| width | SortOrder | No |
| pages | SortOrder | No |
| tags | SortOrder | No |
| fileId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| file | CloudFileOrderByWithRelationInput | No |
| edition | EditionOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| fileId | String | No |
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| height | SortOrder | No |
| width | SortOrder | No |
| pages | SortOrder | No |
| tags | SortOrder | No |
| fileId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| _count | PDFCountOrderByAggregateInput | No |
| _avg | PDFAvgOrderByAggregateInput | No |
| _max | PDFMaxOrderByAggregateInput | No |
| _min | PDFMinOrderByAggregateInput | No |
| _sum | PDFSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PDFScalarWhereWithAggregatesInput | PDFScalarWhereWithAggregatesInput[] | No |
| OR | PDFScalarWhereWithAggregatesInput[] | No |
| NOT | PDFScalarWhereWithAggregatesInput | PDFScalarWhereWithAggregatesInput[] | No |
| height | IntWithAggregatesFilter | Int | No |
| width | IntWithAggregatesFilter | Int | No |
| pages | IntWithAggregatesFilter | Int | No |
| tags | StringNullableListFilter | No |
| fileId | StringWithAggregatesFilter | String | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| deletedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| zenstack_guard | BoolWithAggregatesFilter | Boolean | No |
| zenstack_transaction | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | StoryWhereInput | StoryWhereInput[] | No |
| OR | StoryWhereInput[] | No |
| NOT | StoryWhereInput | StoryWhereInput[] | No |
| artistId | StringNullableFilter | String | Null | Yes |
| authorId | StringNullableFilter | String | Null | Yes |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| artist | ArtistRelationFilter | ArtistWhereInput | Null | Yes |
| author | AuthorRelationFilter | AuthorWhereInput | Null | Yes |
| pages | PageListRelationFilter | No |
| pageArtworks | PageArtworkListRelationFilter | No |
| pageTexts | PageTextListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | SortOrder | No |
| authorId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| artist | ArtistOrderByWithRelationInput | No |
| author | AuthorOrderByWithRelationInput | No |
| pages | PageOrderByRelationAggregateInput | No |
| pageArtworks | PageArtworkOrderByRelationAggregateInput | No |
| pageTexts | PageTextOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | SortOrder | No |
| authorId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| _count | StoryCountOrderByAggregateInput | No |
| _max | StoryMaxOrderByAggregateInput | No |
| _min | StoryMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | StoryScalarWhereWithAggregatesInput | StoryScalarWhereWithAggregatesInput[] | No |
| OR | StoryScalarWhereWithAggregatesInput[] | No |
| NOT | StoryScalarWhereWithAggregatesInput | StoryScalarWhereWithAggregatesInput[] | No |
| artistId | StringNullableWithAggregatesFilter | String | Null | Yes |
| authorId | StringNullableWithAggregatesFilter | String | Null | Yes |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| deletedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | PageArtworkWhereInput | PageArtworkWhereInput[] | No |
| OR | PageArtworkWhereInput[] | No |
| NOT | PageArtworkWhereInput | PageArtworkWhereInput[] | No |
| status | EnumPageStatusFilter | PageStatus | No |
| pageId | StringFilter | String | No |
| storyId | StringFilter | String | No |
| artistId | StringFilter | String | No |
| photoId | StringFilter | String | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| page | PageRelationFilter | PageWhereInput | No |
| story | StoryRelationFilter | StoryWhereInput | No |
| artist | ArtistRelationFilter | ArtistWhereInput | No |
| photo | PhotoRelationFilter | PhotoWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| pageId | SortOrder | No |
| storyId | SortOrder | No |
| artistId | SortOrder | No |
| photoId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| page | PageOrderByWithRelationInput | No |
| story | StoryOrderByWithRelationInput | No |
| artist | ArtistOrderByWithRelationInput | No |
| photo | PhotoOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| pageId | SortOrder | No |
| storyId | SortOrder | No |
| artistId | SortOrder | No |
| photoId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| _count | PageArtworkCountOrderByAggregateInput | No |
| _max | PageArtworkMaxOrderByAggregateInput | No |
| _min | PageArtworkMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PageArtworkScalarWhereWithAggregatesInput | PageArtworkScalarWhereWithAggregatesInput[] | No |
| OR | PageArtworkScalarWhereWithAggregatesInput[] | No |
| NOT | PageArtworkScalarWhereWithAggregatesInput | PageArtworkScalarWhereWithAggregatesInput[] | No |
| status | EnumPageStatusWithAggregatesFilter | PageStatus | No |
| pageId | StringWithAggregatesFilter | String | No |
| storyId | StringWithAggregatesFilter | String | No |
| artistId | StringWithAggregatesFilter | String | No |
| photoId | StringWithAggregatesFilter | String | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| deletedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | PageTextWhereInput | PageTextWhereInput[] | No |
| OR | PageTextWhereInput[] | No |
| NOT | PageTextWhereInput | PageTextWhereInput[] | No |
| status | EnumPageStatusFilter | PageStatus | No |
| locale | EnumLocaleFilter | Locale | No |
| text | StringFilter | String | No |
| type | EnumPageTextTypeFilter | PageTextType | No |
| pageId | StringFilter | String | No |
| storyId | StringFilter | String | No |
| authorId | StringNullableFilter | String | Null | Yes |
| translatorId | StringNullableFilter | String | Null | Yes |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| page | PageRelationFilter | PageWhereInput | No |
| story | StoryRelationFilter | StoryWhereInput | No |
| author | AuthorRelationFilter | AuthorWhereInput | Null | Yes |
| translator | TranslatorRelationFilter | TranslatorWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| locale | SortOrder | No |
| text | SortOrder | No |
| type | SortOrder | No |
| pageId | SortOrder | No |
| storyId | SortOrder | No |
| authorId | SortOrder | No |
| translatorId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| page | PageOrderByWithRelationInput | No |
| story | StoryOrderByWithRelationInput | No |
| author | AuthorOrderByWithRelationInput | No |
| translator | TranslatorOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| locale | SortOrder | No |
| text | SortOrder | No |
| type | SortOrder | No |
| pageId | SortOrder | No |
| storyId | SortOrder | No |
| authorId | SortOrder | No |
| translatorId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| _count | PageTextCountOrderByAggregateInput | No |
| _max | PageTextMaxOrderByAggregateInput | No |
| _min | PageTextMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PageTextScalarWhereWithAggregatesInput | PageTextScalarWhereWithAggregatesInput[] | No |
| OR | PageTextScalarWhereWithAggregatesInput[] | No |
| NOT | PageTextScalarWhereWithAggregatesInput | PageTextScalarWhereWithAggregatesInput[] | No |
| status | EnumPageStatusWithAggregatesFilter | PageStatus | No |
| locale | EnumLocaleWithAggregatesFilter | Locale | No |
| text | StringWithAggregatesFilter | String | No |
| type | EnumPageTextTypeWithAggregatesFilter | PageTextType | No |
| pageId | StringWithAggregatesFilter | String | No |
| storyId | StringWithAggregatesFilter | String | No |
| authorId | StringNullableWithAggregatesFilter | String | Null | Yes |
| translatorId | StringNullableWithAggregatesFilter | String | Null | Yes |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| deletedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | PageWhereInput | PageWhereInput[] | No |
| OR | PageWhereInput[] | No |
| NOT | PageWhereInput | PageWhereInput[] | No |
| status | EnumPageStatusFilter | PageStatus | No |
| type | EnumPageTypeFilter | PageType | No |
| pageNumber | IntFilter | Int | No |
| storyId | StringFilter | String | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| story | StoryRelationFilter | StoryWhereInput | No |
| artworks | PageArtworkListRelationFilter | No |
| texts | PageTextListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| type | SortOrder | No |
| pageNumber | SortOrder | No |
| storyId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| story | StoryOrderByWithRelationInput | No |
| artworks | PageArtworkOrderByRelationAggregateInput | No |
| texts | PageTextOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| type | SortOrder | No |
| pageNumber | SortOrder | No |
| storyId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| _count | PageCountOrderByAggregateInput | No |
| _avg | PageAvgOrderByAggregateInput | No |
| _max | PageMaxOrderByAggregateInput | No |
| _min | PageMinOrderByAggregateInput | No |
| _sum | PageSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PageScalarWhereWithAggregatesInput | PageScalarWhereWithAggregatesInput[] | No |
| OR | PageScalarWhereWithAggregatesInput[] | No |
| NOT | PageScalarWhereWithAggregatesInput | PageScalarWhereWithAggregatesInput[] | No |
| status | EnumPageStatusWithAggregatesFilter | PageStatus | No |
| type | EnumPageTypeWithAggregatesFilter | PageType | No |
| pageNumber | IntWithAggregatesFilter | Int | No |
| storyId | StringWithAggregatesFilter | String | No |
| id | StringWithAggregatesFilter | String | No |
| createdAt | DateTimeWithAggregatesFilter | DateTime | No |
| updatedAt | DateTimeWithAggregatesFilter | DateTime | No |
| deletedAt | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| String | No | |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| artist | ArtistCreateNestedOneWithoutUserInput | No |
| author | AuthorCreateNestedOneWithoutUserInput | No |
| editions | EditionCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| String | No | |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| artist | ArtistUncheckedCreateNestedOneWithoutUserInput | No |
| author | AuthorUncheckedCreateNestedOneWithoutUserInput | No |
| editions | EditionUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| artist | ArtistUpdateOneWithoutUserNestedInput | No |
| author | AuthorUpdateOneWithoutUserNestedInput | No |
| editions | EditionUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| artist | ArtistUncheckedUpdateOneWithoutUserNestedInput | No |
| author | AuthorUncheckedUpdateOneWithoutUserNestedInput | No |
| editions | EditionUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| String | No | |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| stories | StoryCreateNestedManyWithoutAuthorInput | No |
| pageTexts | PageTextCreateNestedManyWithoutAuthorInput | No |
| user | UserCreateNestedOneWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| stories | StoryUncheckedCreateNestedManyWithoutAuthorInput | No |
| pageTexts | PageTextUncheckedCreateNestedManyWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| stories | StoryUpdateManyWithoutAuthorNestedInput | No |
| pageTexts | PageTextUpdateManyWithoutAuthorNestedInput | No |
| user | UserUpdateOneRequiredWithoutAuthorNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| stories | StoryUncheckedUpdateManyWithoutAuthorNestedInput | No |
| pageTexts | PageTextUncheckedUpdateManyWithoutAuthorNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| stories | StoryCreateNestedManyWithoutArtistInput | No |
| pageArtworks | PageArtworkCreateNestedManyWithoutArtistInput | No |
| user | UserCreateNestedOneWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| stories | StoryUncheckedCreateNestedManyWithoutArtistInput | No |
| pageArtworks | PageArtworkUncheckedCreateNestedManyWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| stories | StoryUpdateManyWithoutArtistNestedInput | No |
| pageArtworks | PageArtworkUpdateManyWithoutArtistNestedInput | No |
| user | UserUpdateOneRequiredWithoutArtistNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| stories | StoryUncheckedUpdateManyWithoutArtistNestedInput | No |
| pageArtworks | PageArtworkUncheckedUpdateManyWithoutArtistNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| pageTexts | PageTextCreateNestedManyWithoutTranslatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| pageTexts | PageTextUncheckedCreateNestedManyWithoutTranslatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| pageTexts | PageTextUpdateManyWithoutTranslatorNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| pageTexts | PageTextUncheckedUpdateManyWithoutTranslatorNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| type | ConceptType | No |
| status | ConceptStatus | No |
| description | String | Null | Yes |
| prompt | String | No |
| identifier | String | No |
| classNoun | String | No |
| negativePrompt | String | No |
| instancePrompt | String | No |
| classPrompt | String | No |
| positivePrompts | ConceptCreatepositivePromptsInput | String | No |
| negativePrompts | ConceptCreatenegativePromptsInput | String | No |
| dreamboothModelURI | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| dreamboothTraining | DreamBoothTrainingCreateNestedOneWithoutConceptInput | No |
| photos | PhotoCreateNestedManyWithoutConceptsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| type | ConceptType | No |
| status | ConceptStatus | No |
| description | String | Null | Yes |
| prompt | String | No |
| identifier | String | No |
| classNoun | String | No |
| negativePrompt | String | No |
| instancePrompt | String | No |
| classPrompt | String | No |
| positivePrompts | ConceptCreatepositivePromptsInput | String | No |
| negativePrompts | ConceptCreatenegativePromptsInput | String | No |
| dreamboothTrainingId | String | Null | Yes |
| dreamboothModelURI | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| photos | PhotoUncheckedCreateNestedManyWithoutConceptsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| type | ConceptType | No |
| status | ConceptStatus | No |
| description | String | Null | Yes |
| prompt | String | No |
| identifier | String | No |
| classNoun | String | No |
| negativePrompt | String | No |
| instancePrompt | String | No |
| classPrompt | String | No |
| positivePrompts | ConceptCreatepositivePromptsInput | String | No |
| negativePrompts | ConceptCreatenegativePromptsInput | String | No |
| dreamboothTrainingId | String | Null | Yes |
| dreamboothModelURI | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| input | NullableJsonNullValueInput | Json | No |
| output | NullableJsonNullValueInput | Json | No |
| status | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| started_at | DateTime | Null | Yes |
| completed_at | DateTime | Null | Yes |
| version | String | Null | Yes |
| metrics | NullableJsonNullValueInput | Json | No |
| error | String | Null | Yes |
| logs | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| input | NullableJsonNullValueInput | Json | No |
| output | NullableJsonNullValueInput | Json | No |
| status | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| started_at | DateTime | Null | Yes |
| completed_at | DateTime | Null | Yes |
| version | String | Null | Yes |
| metrics | NullableJsonNullValueInput | Json | No |
| error | String | Null | Yes |
| logs | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| input | NullableJsonNullValueInput | Json | No |
| output | NullableJsonNullValueInput | Json | No |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| started_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| completed_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| metrics | NullableJsonNullValueInput | Json | No |
| error | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| logs | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| input | NullableJsonNullValueInput | Json | No |
| output | NullableJsonNullValueInput | Json | No |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| started_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| completed_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| metrics | NullableJsonNullValueInput | Json | No |
| error | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| logs | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| input | NullableJsonNullValueInput | Json | No |
| output | NullableJsonNullValueInput | Json | No |
| status | String | Null | Yes |
| created_at | DateTime | Null | Yes |
| started_at | DateTime | Null | Yes |
| completed_at | DateTime | Null | Yes |
| version | String | Null | Yes |
| metrics | NullableJsonNullValueInput | Json | No |
| error | String | Null | Yes |
| logs | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| input | NullableJsonNullValueInput | Json | No |
| output | NullableJsonNullValueInput | Json | No |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| started_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| completed_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| metrics | NullableJsonNullValueInput | Json | No |
| error | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| logs | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| input | NullableJsonNullValueInput | Json | No |
| output | NullableJsonNullValueInput | Json | No |
| status | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| started_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| completed_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| version | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| metrics | NullableJsonNullValueInput | Json | No |
| error | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| logs | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| instance_prompt | String | No |
| class_prompt | String | No |
| instance_data | String | No |
| class_data | String | No |
| num_class_images | Int | No |
| save_sample_prompt | String | Null | Yes |
| save_sample_negative_prompt | String | Null | Yes |
| n_save_sample | Int | No |
| save_guidance_scale | Float | No |
| save_infer_steps | Int | No |
| pad_tokens | Boolean | No |
| with_prior_preservation | Boolean | No |
| prior_loss_weight | Float | No |
| seed | Int | No |
| resolution | Int | No |
| center_crop | Boolean | No |
| train_text_encoder | Boolean | No |
| train_batch_size | Int | No |
| sample_batch_size | Int | No |
| num_train_epochs | Int | No |
| max_train_steps | Int | No |
| gradient_accumulation_steps | Int | No |
| gradient_checkpointing | Boolean | No |
| learning_rate | Float | No |
| scale_lr | Boolean | No |
| lr_scheduler | LRScheduler | No |
| lr_warmup_steps | Int | No |
| use_8bit_adam | Boolean | No |
| adam_beta1 | Float | No |
| adam_beta2 | Float | No |
| adam_weight_decay | Float | No |
| max_grad_norm | Float | No |
| Concept | ConceptCreateNestedManyWithoutDreamboothTrainingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| instance_prompt | String | No |
| class_prompt | String | No |
| instance_data | String | No |
| class_data | String | No |
| num_class_images | Int | No |
| save_sample_prompt | String | Null | Yes |
| save_sample_negative_prompt | String | Null | Yes |
| n_save_sample | Int | No |
| save_guidance_scale | Float | No |
| save_infer_steps | Int | No |
| pad_tokens | Boolean | No |
| with_prior_preservation | Boolean | No |
| prior_loss_weight | Float | No |
| seed | Int | No |
| resolution | Int | No |
| center_crop | Boolean | No |
| train_text_encoder | Boolean | No |
| train_batch_size | Int | No |
| sample_batch_size | Int | No |
| num_train_epochs | Int | No |
| max_train_steps | Int | No |
| gradient_accumulation_steps | Int | No |
| gradient_checkpointing | Boolean | No |
| learning_rate | Float | No |
| scale_lr | Boolean | No |
| lr_scheduler | LRScheduler | No |
| lr_warmup_steps | Int | No |
| use_8bit_adam | Boolean | No |
| adam_beta1 | Float | No |
| adam_beta2 | Float | No |
| adam_weight_decay | Float | No |
| max_grad_norm | Float | No |
| Concept | ConceptUncheckedCreateNestedManyWithoutDreamboothTrainingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| instance_prompt | String | No |
| class_prompt | String | No |
| instance_data | String | No |
| class_data | String | No |
| num_class_images | Int | No |
| save_sample_prompt | String | Null | Yes |
| save_sample_negative_prompt | String | Null | Yes |
| n_save_sample | Int | No |
| save_guidance_scale | Float | No |
| save_infer_steps | Int | No |
| pad_tokens | Boolean | No |
| with_prior_preservation | Boolean | No |
| prior_loss_weight | Float | No |
| seed | Int | No |
| resolution | Int | No |
| center_crop | Boolean | No |
| train_text_encoder | Boolean | No |
| train_batch_size | Int | No |
| sample_batch_size | Int | No |
| num_train_epochs | Int | No |
| max_train_steps | Int | No |
| gradient_accumulation_steps | Int | No |
| gradient_checkpointing | Boolean | No |
| learning_rate | Float | No |
| scale_lr | Boolean | No |
| lr_scheduler | LRScheduler | No |
| lr_warmup_steps | Int | No |
| use_8bit_adam | Boolean | No |
| adam_beta1 | Float | No |
| adam_beta2 | Float | No |
| adam_weight_decay | Float | No |
| max_grad_norm | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| user | UserCreateNestedOneWithoutEditionsInput | No |
| PDFCreateNestedOneWithoutEditionInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| pdfId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneRequiredWithoutEditionsNestedInput | No |
| PDFUpdateOneRequiredWithoutEditionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| pdfId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| pdfId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| pdfId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| filename | String | No |
| stem | String | No |
| extension | String | No |
| size | Int | No |
| mime | String | No |
| resourceType | FileResourceType | No |
| metadata | NullableJsonNullValueInput | Json | No |
| key | String | No |
| bucket | String | No |
| region | CloudFileRegion | No |
| publicUrl | String | Null | Yes |
| privacy | FilePrivacy | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| photo | PhotoCreateNestedOneWithoutFileInput | No |
| PDFCreateNestedOneWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| filename | String | No |
| stem | String | No |
| extension | String | No |
| size | Int | No |
| mime | String | No |
| resourceType | FileResourceType | No |
| metadata | NullableJsonNullValueInput | Json | No |
| key | String | No |
| bucket | String | No |
| region | CloudFileRegion | No |
| publicUrl | String | Null | Yes |
| privacy | FilePrivacy | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| photo | PhotoUncheckedCreateNestedOneWithoutFileInput | No |
| PDFUncheckedCreateNestedOneWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| filename | String | No |
| stem | String | No |
| extension | String | No |
| size | Int | No |
| mime | String | No |
| resourceType | FileResourceType | No |
| metadata | NullableJsonNullValueInput | Json | No |
| key | String | No |
| bucket | String | No |
| region | CloudFileRegion | No |
| publicUrl | String | Null | Yes |
| privacy | FilePrivacy | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| tags | PhotoCreatetagsInput | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| file | CloudFileCreateNestedOneWithoutPhotoInput | No |
| pageArtworks | PageArtworkCreateNestedManyWithoutPhotoInput | No |
| concepts | ConceptCreateNestedManyWithoutPhotosInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| tags | PhotoCreatetagsInput | String | No |
| fileId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| pageArtworks | PageArtworkUncheckedCreateNestedManyWithoutPhotoInput | No |
| concepts | ConceptUncheckedCreateNestedManyWithoutPhotosInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| tags | PhotoUpdatetagsInput | String | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| file | CloudFileUpdateOneRequiredWithoutPhotoNestedInput | No |
| pageArtworks | PageArtworkUpdateManyWithoutPhotoNestedInput | No |
| concepts | ConceptUpdateManyWithoutPhotosNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| tags | PhotoUpdatetagsInput | String | No |
| fileId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| pageArtworks | PageArtworkUncheckedUpdateManyWithoutPhotoNestedInput | No |
| concepts | ConceptUncheckedUpdateManyWithoutPhotosNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| tags | PhotoCreatetagsInput | String | No |
| fileId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| tags | PhotoUpdatetagsInput | String | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| tags | PhotoUpdatetagsInput | String | No |
| fileId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| pages | Int | No |
| tags | PDFCreatetagsInput | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| file | CloudFileCreateNestedOneWithoutPdfInput | No |
| edition | EditionCreateNestedOneWithoutPdfInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| pages | Int | No |
| tags | PDFCreatetagsInput | String | No |
| fileId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| edition | EditionUncheckedCreateNestedOneWithoutPdfInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| pages | Int | IntFieldUpdateOperationsInput | No |
| tags | PDFUpdatetagsInput | String | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| file | CloudFileUpdateOneRequiredWithoutPdfNestedInput | No |
| edition | EditionUpdateOneWithoutPdfNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| pages | Int | IntFieldUpdateOperationsInput | No |
| tags | PDFUpdatetagsInput | String | No |
| fileId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| edition | EditionUncheckedUpdateOneWithoutPdfNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| pages | Int | No |
| tags | PDFCreatetagsInput | String | No |
| fileId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| pages | Int | IntFieldUpdateOperationsInput | No |
| tags | PDFUpdatetagsInput | String | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| pages | Int | IntFieldUpdateOperationsInput | No |
| tags | PDFUpdatetagsInput | String | No |
| fileId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| artist | ArtistCreateNestedOneWithoutStoriesInput | No |
| author | AuthorCreateNestedOneWithoutStoriesInput | No |
| pages | PageCreateNestedManyWithoutStoryInput | No |
| pageArtworks | PageArtworkCreateNestedManyWithoutStoryInput | No |
| pageTexts | PageTextCreateNestedManyWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | Null | Yes |
| authorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| pages | PageUncheckedCreateNestedManyWithoutStoryInput | No |
| pageArtworks | PageArtworkUncheckedCreateNestedManyWithoutStoryInput | No |
| pageTexts | PageTextUncheckedCreateNestedManyWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| artist | ArtistUpdateOneWithoutStoriesNestedInput | No |
| author | AuthorUpdateOneWithoutStoriesNestedInput | No |
| pages | PageUpdateManyWithoutStoryNestedInput | No |
| pageArtworks | PageArtworkUpdateManyWithoutStoryNestedInput | No |
| pageTexts | PageTextUpdateManyWithoutStoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| pages | PageUncheckedUpdateManyWithoutStoryNestedInput | No |
| pageArtworks | PageArtworkUncheckedUpdateManyWithoutStoryNestedInput | No |
| pageTexts | PageTextUncheckedUpdateManyWithoutStoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | Null | Yes |
| authorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| page | PageCreateNestedOneWithoutArtworksInput | No |
| story | StoryCreateNestedOneWithoutPageArtworksInput | No |
| artist | ArtistCreateNestedOneWithoutPageArtworksInput | No |
| photo | PhotoCreateNestedOneWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| pageId | String | No |
| storyId | String | No |
| artistId | String | No |
| photoId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| page | PageUpdateOneRequiredWithoutArtworksNestedInput | No |
| story | StoryUpdateOneRequiredWithoutPageArtworksNestedInput | No |
| artist | ArtistUpdateOneRequiredWithoutPageArtworksNestedInput | No |
| photo | PhotoUpdateOneRequiredWithoutPageArtworksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| pageId | String | StringFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| artistId | String | StringFieldUpdateOperationsInput | No |
| photoId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| pageId | String | No |
| storyId | String | No |
| artistId | String | No |
| photoId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| pageId | String | StringFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| artistId | String | StringFieldUpdateOperationsInput | No |
| photoId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| page | PageCreateNestedOneWithoutTextsInput | No |
| story | StoryCreateNestedOneWithoutPageTextsInput | No |
| author | AuthorCreateNestedOneWithoutPageTextsInput | No |
| translator | TranslatorCreateNestedOneWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| pageId | String | No |
| storyId | String | No |
| authorId | String | Null | Yes |
| translatorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| page | PageUpdateOneRequiredWithoutTextsNestedInput | No |
| story | StoryUpdateOneRequiredWithoutPageTextsNestedInput | No |
| author | AuthorUpdateOneWithoutPageTextsNestedInput | No |
| translator | TranslatorUpdateOneWithoutPageTextsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| pageId | String | StringFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| authorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| translatorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| pageId | String | No |
| storyId | String | No |
| authorId | String | Null | Yes |
| translatorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| pageId | String | StringFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| authorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| translatorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| type | PageType | No |
| pageNumber | Int | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| story | StoryCreateNestedOneWithoutPagesInput | No |
| artworks | PageArtworkCreateNestedManyWithoutPageInput | No |
| texts | PageTextCreateNestedManyWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| type | PageType | No |
| pageNumber | Int | No |
| storyId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| artworks | PageArtworkUncheckedCreateNestedManyWithoutPageInput | No |
| texts | PageTextUncheckedCreateNestedManyWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| type | PageType | EnumPageTypeFieldUpdateOperationsInput | No |
| pageNumber | Int | IntFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| story | StoryUpdateOneRequiredWithoutPagesNestedInput | No |
| artworks | PageArtworkUpdateManyWithoutPageNestedInput | No |
| texts | PageTextUpdateManyWithoutPageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| type | PageType | EnumPageTypeFieldUpdateOperationsInput | No |
| pageNumber | Int | IntFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| artworks | PageArtworkUncheckedUpdateManyWithoutPageNestedInput | No |
| texts | PageTextUncheckedUpdateManyWithoutPageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| type | PageType | No |
| pageNumber | Int | No |
| storyId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| type | PageType | EnumPageTypeFieldUpdateOperationsInput | No |
| pageNumber | Int | IntFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| type | PageType | EnumPageTypeFieldUpdateOperationsInput | No |
| pageNumber | Int | IntFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | String | No |
| notIn | String | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | DateTime | No |
| notIn | DateTime | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | DateTime | Null | Yes |
| notIn | DateTime | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | String | Null | Yes |
| notIn | String | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | ArtistWhereInput | Null | Yes |
| isNot | ArtistWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | AuthorWhereInput | Null | Yes |
| isNot | AuthorWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | EditionWhereInput | No |
| some | EditionWhereInput | No |
| none | EditionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| name | SortOrder | No |
| SortOrder | No | |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| name | SortOrder | No |
| SortOrder | No | |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| name | SortOrder | No |
| SortOrder | No | |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | String | No |
| notIn | String | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | DateTime | No |
| notIn | DateTime | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | DateTime | Null | Yes |
| notIn | DateTime | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | String | Null | Yes |
| notIn | String | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | StoryWhereInput | No |
| some | StoryWhereInput | No |
| none | StoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | PageTextWhereInput | No |
| some | PageTextWhereInput | No |
| none | PageTextWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | No |
| isNot | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | PageArtworkWhereInput | No |
| some | PageArtworkWhereInput | No |
| none | PageArtworkWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ConceptType | No |
| in | ConceptType[] | ConceptType | No |
| notIn | ConceptType[] | ConceptType | No |
| not | ConceptType | NestedEnumConceptTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ConceptStatus | No |
| in | ConceptStatus[] | ConceptStatus | No |
| notIn | ConceptStatus[] | ConceptStatus | No |
| not | ConceptStatus | NestedEnumConceptStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| has | String | Null | Yes |
| hasEvery | String | No |
| hasSome | String | No |
| isEmpty | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| is | DreamBoothTrainingWhereInput | Null | Yes |
| isNot | DreamBoothTrainingWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | PhotoWhereInput | No |
| some | PhotoWhereInput | No |
| none | PhotoWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| name | SortOrder | No |
| type | SortOrder | No |
| status | SortOrder | No |
| description | SortOrder | No |
| prompt | SortOrder | No |
| identifier | SortOrder | No |
| classNoun | SortOrder | No |
| negativePrompt | SortOrder | No |
| instancePrompt | SortOrder | No |
| classPrompt | SortOrder | No |
| positivePrompts | SortOrder | No |
| negativePrompts | SortOrder | No |
| dreamboothTrainingId | SortOrder | No |
| dreamboothModelURI | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| name | SortOrder | No |
| type | SortOrder | No |
| status | SortOrder | No |
| description | SortOrder | No |
| prompt | SortOrder | No |
| identifier | SortOrder | No |
| classNoun | SortOrder | No |
| negativePrompt | SortOrder | No |
| instancePrompt | SortOrder | No |
| classPrompt | SortOrder | No |
| dreamboothTrainingId | SortOrder | No |
| dreamboothModelURI | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| name | SortOrder | No |
| type | SortOrder | No |
| status | SortOrder | No |
| description | SortOrder | No |
| prompt | SortOrder | No |
| identifier | SortOrder | No |
| classNoun | SortOrder | No |
| negativePrompt | SortOrder | No |
| instancePrompt | SortOrder | No |
| classPrompt | SortOrder | No |
| dreamboothTrainingId | SortOrder | No |
| dreamboothModelURI | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ConceptType | No |
| in | ConceptType[] | ConceptType | No |
| notIn | ConceptType[] | ConceptType | No |
| not | ConceptType | NestedEnumConceptTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumConceptTypeFilter | No |
| _max | NestedEnumConceptTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ConceptStatus | No |
| in | ConceptStatus[] | ConceptStatus | No |
| notIn | ConceptStatus[] | ConceptStatus | No |
| not | ConceptStatus | NestedEnumConceptStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumConceptStatusFilter | No |
| _max | NestedEnumConceptStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | No |
| string_starts_with | String | No |
| string_ends_with | String | No |
| array_contains | Json | Null | Yes |
| array_starts_with | Json | Null | Yes |
| array_ends_with | Json | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| input | SortOrder | No |
| output | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| started_at | SortOrder | No |
| completed_at | SortOrder | No |
| version | SortOrder | No |
| metrics | SortOrder | No |
| error | SortOrder | No |
| logs | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| started_at | SortOrder | No |
| completed_at | SortOrder | No |
| version | SortOrder | No |
| error | SortOrder | No |
| logs | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| started_at | SortOrder | No |
| completed_at | SortOrder | No |
| version | SortOrder | No |
| error | SortOrder | No |
| logs | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | No |
| string_starts_with | String | No |
| string_ends_with | String | No |
| array_contains | Json | Null | Yes |
| array_starts_with | Json | Null | Yes |
| array_ends_with | Json | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonNullValueFilter | No |
| _count | NestedIntNullableFilter | No |
| _min | NestedJsonNullableFilter | No |
| _max | NestedJsonNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | Int | No |
| notIn | Int | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | No |
| in | Float | Float | No |
| notIn | Float | Float | No |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | LRScheduler | No |
| in | LRScheduler[] | LRScheduler | No |
| notIn | LRScheduler[] | LRScheduler | No |
| not | LRScheduler | NestedEnumLRSchedulerFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | ConceptWhereInput | No |
| some | ConceptWhereInput | No |
| none | ConceptWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| instance_prompt | SortOrder | No |
| class_prompt | SortOrder | No |
| instance_data | SortOrder | No |
| class_data | SortOrder | No |
| num_class_images | SortOrder | No |
| save_sample_prompt | SortOrder | No |
| save_sample_negative_prompt | SortOrder | No |
| n_save_sample | SortOrder | No |
| save_guidance_scale | SortOrder | No |
| save_infer_steps | SortOrder | No |
| pad_tokens | SortOrder | No |
| with_prior_preservation | SortOrder | No |
| prior_loss_weight | SortOrder | No |
| seed | SortOrder | No |
| resolution | SortOrder | No |
| center_crop | SortOrder | No |
| train_text_encoder | SortOrder | No |
| train_batch_size | SortOrder | No |
| sample_batch_size | SortOrder | No |
| num_train_epochs | SortOrder | No |
| max_train_steps | SortOrder | No |
| gradient_accumulation_steps | SortOrder | No |
| gradient_checkpointing | SortOrder | No |
| learning_rate | SortOrder | No |
| scale_lr | SortOrder | No |
| lr_scheduler | SortOrder | No |
| lr_warmup_steps | SortOrder | No |
| use_8bit_adam | SortOrder | No |
| adam_beta1 | SortOrder | No |
| adam_beta2 | SortOrder | No |
| adam_weight_decay | SortOrder | No |
| max_grad_norm | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| num_class_images | SortOrder | No |
| n_save_sample | SortOrder | No |
| save_guidance_scale | SortOrder | No |
| save_infer_steps | SortOrder | No |
| prior_loss_weight | SortOrder | No |
| seed | SortOrder | No |
| resolution | SortOrder | No |
| train_batch_size | SortOrder | No |
| sample_batch_size | SortOrder | No |
| num_train_epochs | SortOrder | No |
| max_train_steps | SortOrder | No |
| gradient_accumulation_steps | SortOrder | No |
| learning_rate | SortOrder | No |
| lr_warmup_steps | SortOrder | No |
| adam_beta1 | SortOrder | No |
| adam_beta2 | SortOrder | No |
| adam_weight_decay | SortOrder | No |
| max_grad_norm | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| instance_prompt | SortOrder | No |
| class_prompt | SortOrder | No |
| instance_data | SortOrder | No |
| class_data | SortOrder | No |
| num_class_images | SortOrder | No |
| save_sample_prompt | SortOrder | No |
| save_sample_negative_prompt | SortOrder | No |
| n_save_sample | SortOrder | No |
| save_guidance_scale | SortOrder | No |
| save_infer_steps | SortOrder | No |
| pad_tokens | SortOrder | No |
| with_prior_preservation | SortOrder | No |
| prior_loss_weight | SortOrder | No |
| seed | SortOrder | No |
| resolution | SortOrder | No |
| center_crop | SortOrder | No |
| train_text_encoder | SortOrder | No |
| train_batch_size | SortOrder | No |
| sample_batch_size | SortOrder | No |
| num_train_epochs | SortOrder | No |
| max_train_steps | SortOrder | No |
| gradient_accumulation_steps | SortOrder | No |
| gradient_checkpointing | SortOrder | No |
| learning_rate | SortOrder | No |
| scale_lr | SortOrder | No |
| lr_scheduler | SortOrder | No |
| lr_warmup_steps | SortOrder | No |
| use_8bit_adam | SortOrder | No |
| adam_beta1 | SortOrder | No |
| adam_beta2 | SortOrder | No |
| adam_weight_decay | SortOrder | No |
| max_grad_norm | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| createdAt | SortOrder | No |
| instance_prompt | SortOrder | No |
| class_prompt | SortOrder | No |
| instance_data | SortOrder | No |
| class_data | SortOrder | No |
| num_class_images | SortOrder | No |
| save_sample_prompt | SortOrder | No |
| save_sample_negative_prompt | SortOrder | No |
| n_save_sample | SortOrder | No |
| save_guidance_scale | SortOrder | No |
| save_infer_steps | SortOrder | No |
| pad_tokens | SortOrder | No |
| with_prior_preservation | SortOrder | No |
| prior_loss_weight | SortOrder | No |
| seed | SortOrder | No |
| resolution | SortOrder | No |
| center_crop | SortOrder | No |
| train_text_encoder | SortOrder | No |
| train_batch_size | SortOrder | No |
| sample_batch_size | SortOrder | No |
| num_train_epochs | SortOrder | No |
| max_train_steps | SortOrder | No |
| gradient_accumulation_steps | SortOrder | No |
| gradient_checkpointing | SortOrder | No |
| learning_rate | SortOrder | No |
| scale_lr | SortOrder | No |
| lr_scheduler | SortOrder | No |
| lr_warmup_steps | SortOrder | No |
| use_8bit_adam | SortOrder | No |
| adam_beta1 | SortOrder | No |
| adam_beta2 | SortOrder | No |
| adam_weight_decay | SortOrder | No |
| max_grad_norm | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| num_class_images | SortOrder | No |
| n_save_sample | SortOrder | No |
| save_guidance_scale | SortOrder | No |
| save_infer_steps | SortOrder | No |
| prior_loss_weight | SortOrder | No |
| seed | SortOrder | No |
| resolution | SortOrder | No |
| train_batch_size | SortOrder | No |
| sample_batch_size | SortOrder | No |
| num_train_epochs | SortOrder | No |
| max_train_steps | SortOrder | No |
| gradient_accumulation_steps | SortOrder | No |
| learning_rate | SortOrder | No |
| lr_warmup_steps | SortOrder | No |
| adam_beta1 | SortOrder | No |
| adam_beta2 | SortOrder | No |
| adam_weight_decay | SortOrder | No |
| max_grad_norm | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | Int | No |
| notIn | Int | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | No |
| in | Float | Float | No |
| notIn | Float | Float | No |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedFloatFilter | No |
| _min | NestedFloatFilter | No |
| _max | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | LRScheduler | No |
| in | LRScheduler[] | LRScheduler | No |
| notIn | LRScheduler[] | LRScheduler | No |
| not | LRScheduler | NestedEnumLRSchedulerWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumLRSchedulerFilter | No |
| _max | NestedEnumLRSchedulerFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | PDFWhereInput | Null | Yes |
| isNot | PDFWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| pdfId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| pdfId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| pdfId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FileResourceType | No |
| in | FileResourceType[] | FileResourceType | No |
| notIn | FileResourceType[] | FileResourceType | No |
| not | FileResourceType | NestedEnumFileResourceTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CloudFileRegion | No |
| in | CloudFileRegion[] | CloudFileRegion | No |
| notIn | CloudFileRegion[] | CloudFileRegion | No |
| not | CloudFileRegion | NestedEnumCloudFileRegionFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FilePrivacy | No |
| in | FilePrivacy[] | FilePrivacy | No |
| notIn | FilePrivacy[] | FilePrivacy | No |
| not | FilePrivacy | NestedEnumFilePrivacyFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | PhotoWhereInput | Null | Yes |
| isNot | PhotoWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| region | CloudFileRegion | No |
| bucket | String | No |
| key | String | No |
| Name | Type | Nullable |
|---|---|---|
| filename | SortOrder | No |
| stem | SortOrder | No |
| extension | SortOrder | No |
| size | SortOrder | No |
| mime | SortOrder | No |
| resourceType | SortOrder | No |
| metadata | SortOrder | No |
| key | SortOrder | No |
| bucket | SortOrder | No |
| region | SortOrder | No |
| publicUrl | SortOrder | No |
| privacy | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| size | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| filename | SortOrder | No |
| stem | SortOrder | No |
| extension | SortOrder | No |
| size | SortOrder | No |
| mime | SortOrder | No |
| resourceType | SortOrder | No |
| key | SortOrder | No |
| bucket | SortOrder | No |
| region | SortOrder | No |
| publicUrl | SortOrder | No |
| privacy | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| filename | SortOrder | No |
| stem | SortOrder | No |
| extension | SortOrder | No |
| size | SortOrder | No |
| mime | SortOrder | No |
| resourceType | SortOrder | No |
| key | SortOrder | No |
| bucket | SortOrder | No |
| region | SortOrder | No |
| publicUrl | SortOrder | No |
| privacy | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| size | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FileResourceType | No |
| in | FileResourceType[] | FileResourceType | No |
| notIn | FileResourceType[] | FileResourceType | No |
| not | FileResourceType | NestedEnumFileResourceTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumFileResourceTypeFilter | No |
| _max | NestedEnumFileResourceTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CloudFileRegion | No |
| in | CloudFileRegion[] | CloudFileRegion | No |
| notIn | CloudFileRegion[] | CloudFileRegion | No |
| not | CloudFileRegion | NestedEnumCloudFileRegionWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumCloudFileRegionFilter | No |
| _max | NestedEnumCloudFileRegionFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FilePrivacy | No |
| in | FilePrivacy[] | FilePrivacy | No |
| notIn | FilePrivacy[] | FilePrivacy | No |
| not | FilePrivacy | NestedEnumFilePrivacyWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumFilePrivacyFilter | No |
| _max | NestedEnumFilePrivacyFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | CloudFileWhereInput | No |
| isNot | CloudFileWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | SortOrder | No |
| width | SortOrder | No |
| tags | SortOrder | No |
| fileId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| height | SortOrder | No |
| width | SortOrder | No |
| fileId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| height | SortOrder | No |
| width | SortOrder | No |
| fileId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | EditionWhereInput | Null | Yes |
| isNot | EditionWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | SortOrder | No |
| width | SortOrder | No |
| pages | SortOrder | No |
| tags | SortOrder | No |
| fileId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| height | SortOrder | No |
| width | SortOrder | No |
| pages | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| height | SortOrder | No |
| width | SortOrder | No |
| pages | SortOrder | No |
| fileId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| height | SortOrder | No |
| width | SortOrder | No |
| pages | SortOrder | No |
| fileId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| zenstack_guard | SortOrder | No |
| zenstack_transaction | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| height | SortOrder | No |
| width | SortOrder | No |
| pages | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | PageWhereInput | No |
| some | PageWhereInput | No |
| none | PageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | SortOrder | No |
| authorId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | SortOrder | No |
| authorId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | SortOrder | No |
| authorId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PageStatus | No |
| in | PageStatus[] | PageStatus | No |
| notIn | PageStatus[] | PageStatus | No |
| not | PageStatus | NestedEnumPageStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | PageWhereInput | No |
| isNot | PageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | StoryWhereInput | No |
| isNot | StoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| pageId | SortOrder | No |
| storyId | SortOrder | No |
| artistId | SortOrder | No |
| photoId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| pageId | SortOrder | No |
| storyId | SortOrder | No |
| artistId | SortOrder | No |
| photoId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| pageId | SortOrder | No |
| storyId | SortOrder | No |
| artistId | SortOrder | No |
| photoId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PageStatus | No |
| in | PageStatus[] | PageStatus | No |
| notIn | PageStatus[] | PageStatus | No |
| not | PageStatus | NestedEnumPageStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPageStatusFilter | No |
| _max | NestedEnumPageStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Locale | No |
| in | Locale[] | Locale | No |
| notIn | Locale[] | Locale | No |
| not | Locale | NestedEnumLocaleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PageTextType | No |
| in | PageTextType[] | PageTextType | No |
| notIn | PageTextType[] | PageTextType | No |
| not | PageTextType | NestedEnumPageTextTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | TranslatorWhereInput | Null | Yes |
| isNot | TranslatorWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| locale | SortOrder | No |
| text | SortOrder | No |
| type | SortOrder | No |
| pageId | SortOrder | No |
| storyId | SortOrder | No |
| authorId | SortOrder | No |
| translatorId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| locale | SortOrder | No |
| text | SortOrder | No |
| type | SortOrder | No |
| pageId | SortOrder | No |
| storyId | SortOrder | No |
| authorId | SortOrder | No |
| translatorId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| locale | SortOrder | No |
| text | SortOrder | No |
| type | SortOrder | No |
| pageId | SortOrder | No |
| storyId | SortOrder | No |
| authorId | SortOrder | No |
| translatorId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Locale | No |
| in | Locale[] | Locale | No |
| notIn | Locale[] | Locale | No |
| not | Locale | NestedEnumLocaleWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumLocaleFilter | No |
| _max | NestedEnumLocaleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PageTextType | No |
| in | PageTextType[] | PageTextType | No |
| notIn | PageTextType[] | PageTextType | No |
| not | PageTextType | NestedEnumPageTextTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPageTextTypeFilter | No |
| _max | NestedEnumPageTextTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PageType | No |
| in | PageType[] | PageType | No |
| notIn | PageType[] | PageType | No |
| not | PageType | NestedEnumPageTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| type | SortOrder | No |
| pageNumber | SortOrder | No |
| storyId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| pageNumber | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| type | SortOrder | No |
| pageNumber | SortOrder | No |
| storyId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| status | SortOrder | No |
| type | SortOrder | No |
| pageNumber | SortOrder | No |
| storyId | SortOrder | No |
| id | SortOrder | No |
| createdAt | SortOrder | No |
| updatedAt | SortOrder | No |
| deletedAt | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| pageNumber | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PageType | No |
| in | PageType[] | PageType | No |
| notIn | PageType[] | PageType | No |
| not | PageType | NestedEnumPageTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPageTypeFilter | No |
| _max | NestedEnumPageTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| create | ArtistCreateWithoutUserInput | ArtistUncheckedCreateWithoutUserInput | No |
| connectOrCreate | ArtistCreateOrConnectWithoutUserInput | No |
| connect | ArtistWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AuthorCreateWithoutUserInput | AuthorUncheckedCreateWithoutUserInput | No |
| connectOrCreate | AuthorCreateOrConnectWithoutUserInput | No |
| connect | AuthorWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EditionCreateWithoutUserInput | EditionCreateWithoutUserInput[] | EditionUncheckedCreateWithoutUserInput | EditionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | EditionCreateOrConnectWithoutUserInput | EditionCreateOrConnectWithoutUserInput[] | No |
| createMany | EditionCreateManyUserInputEnvelope | No |
| connect | EditionWhereUniqueInput | EditionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ArtistCreateWithoutUserInput | ArtistUncheckedCreateWithoutUserInput | No |
| connectOrCreate | ArtistCreateOrConnectWithoutUserInput | No |
| connect | ArtistWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AuthorCreateWithoutUserInput | AuthorUncheckedCreateWithoutUserInput | No |
| connectOrCreate | AuthorCreateOrConnectWithoutUserInput | No |
| connect | AuthorWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EditionCreateWithoutUserInput | EditionCreateWithoutUserInput[] | EditionUncheckedCreateWithoutUserInput | EditionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | EditionCreateOrConnectWithoutUserInput | EditionCreateOrConnectWithoutUserInput[] | No |
| createMany | EditionCreateManyUserInputEnvelope | No |
| connect | EditionWhereUniqueInput | EditionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | ArtistCreateWithoutUserInput | ArtistUncheckedCreateWithoutUserInput | No |
| connectOrCreate | ArtistCreateOrConnectWithoutUserInput | No |
| upsert | ArtistUpsertWithoutUserInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ArtistWhereUniqueInput | No |
| update | ArtistUpdateWithoutUserInput | ArtistUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AuthorCreateWithoutUserInput | AuthorUncheckedCreateWithoutUserInput | No |
| connectOrCreate | AuthorCreateOrConnectWithoutUserInput | No |
| upsert | AuthorUpsertWithoutUserInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | AuthorWhereUniqueInput | No |
| update | AuthorUpdateWithoutUserInput | AuthorUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EditionCreateWithoutUserInput | EditionCreateWithoutUserInput[] | EditionUncheckedCreateWithoutUserInput | EditionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | EditionCreateOrConnectWithoutUserInput | EditionCreateOrConnectWithoutUserInput[] | No |
| upsert | EditionUpsertWithWhereUniqueWithoutUserInput | EditionUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | EditionCreateManyUserInputEnvelope | No |
| set | EditionWhereUniqueInput | EditionWhereUniqueInput[] | No |
| disconnect | EditionWhereUniqueInput | EditionWhereUniqueInput[] | No |
| delete | EditionWhereUniqueInput | EditionWhereUniqueInput[] | No |
| connect | EditionWhereUniqueInput | EditionWhereUniqueInput[] | No |
| update | EditionUpdateWithWhereUniqueWithoutUserInput | EditionUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | EditionUpdateManyWithWhereWithoutUserInput | EditionUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | EditionScalarWhereInput | EditionScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ArtistCreateWithoutUserInput | ArtistUncheckedCreateWithoutUserInput | No |
| connectOrCreate | ArtistCreateOrConnectWithoutUserInput | No |
| upsert | ArtistUpsertWithoutUserInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ArtistWhereUniqueInput | No |
| update | ArtistUpdateWithoutUserInput | ArtistUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AuthorCreateWithoutUserInput | AuthorUncheckedCreateWithoutUserInput | No |
| connectOrCreate | AuthorCreateOrConnectWithoutUserInput | No |
| upsert | AuthorUpsertWithoutUserInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | AuthorWhereUniqueInput | No |
| update | AuthorUpdateWithoutUserInput | AuthorUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EditionCreateWithoutUserInput | EditionCreateWithoutUserInput[] | EditionUncheckedCreateWithoutUserInput | EditionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | EditionCreateOrConnectWithoutUserInput | EditionCreateOrConnectWithoutUserInput[] | No |
| upsert | EditionUpsertWithWhereUniqueWithoutUserInput | EditionUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | EditionCreateManyUserInputEnvelope | No |
| set | EditionWhereUniqueInput | EditionWhereUniqueInput[] | No |
| disconnect | EditionWhereUniqueInput | EditionWhereUniqueInput[] | No |
| delete | EditionWhereUniqueInput | EditionWhereUniqueInput[] | No |
| connect | EditionWhereUniqueInput | EditionWhereUniqueInput[] | No |
| update | EditionUpdateWithWhereUniqueWithoutUserInput | EditionUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | EditionUpdateManyWithWhereWithoutUserInput | EditionUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | EditionScalarWhereInput | EditionScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutAuthorInput | StoryCreateWithoutAuthorInput[] | StoryUncheckedCreateWithoutAuthorInput | StoryUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | StoryCreateOrConnectWithoutAuthorInput | StoryCreateOrConnectWithoutAuthorInput[] | No |
| createMany | StoryCreateManyAuthorInputEnvelope | No |
| connect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageTextCreateWithoutAuthorInput | PageTextCreateWithoutAuthorInput[] | PageTextUncheckedCreateWithoutAuthorInput | PageTextUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | PageTextCreateOrConnectWithoutAuthorInput | PageTextCreateOrConnectWithoutAuthorInput[] | No |
| createMany | PageTextCreateManyAuthorInputEnvelope | No |
| connect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAuthorInput | UserUncheckedCreateWithoutAuthorInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAuthorInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutAuthorInput | StoryCreateWithoutAuthorInput[] | StoryUncheckedCreateWithoutAuthorInput | StoryUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | StoryCreateOrConnectWithoutAuthorInput | StoryCreateOrConnectWithoutAuthorInput[] | No |
| createMany | StoryCreateManyAuthorInputEnvelope | No |
| connect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageTextCreateWithoutAuthorInput | PageTextCreateWithoutAuthorInput[] | PageTextUncheckedCreateWithoutAuthorInput | PageTextUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | PageTextCreateOrConnectWithoutAuthorInput | PageTextCreateOrConnectWithoutAuthorInput[] | No |
| createMany | PageTextCreateManyAuthorInputEnvelope | No |
| connect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutAuthorInput | StoryCreateWithoutAuthorInput[] | StoryUncheckedCreateWithoutAuthorInput | StoryUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | StoryCreateOrConnectWithoutAuthorInput | StoryCreateOrConnectWithoutAuthorInput[] | No |
| upsert | StoryUpsertWithWhereUniqueWithoutAuthorInput | StoryUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | StoryCreateManyAuthorInputEnvelope | No |
| set | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| disconnect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| delete | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| connect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| update | StoryUpdateWithWhereUniqueWithoutAuthorInput | StoryUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | StoryUpdateManyWithWhereWithoutAuthorInput | StoryUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | StoryScalarWhereInput | StoryScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAuthorInput | UserUncheckedCreateWithoutAuthorInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAuthorInput | No |
| upsert | UserUpsertWithoutAuthorInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutAuthorInput | UserUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutAuthorInput | StoryCreateWithoutAuthorInput[] | StoryUncheckedCreateWithoutAuthorInput | StoryUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | StoryCreateOrConnectWithoutAuthorInput | StoryCreateOrConnectWithoutAuthorInput[] | No |
| upsert | StoryUpsertWithWhereUniqueWithoutAuthorInput | StoryUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | StoryCreateManyAuthorInputEnvelope | No |
| set | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| disconnect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| delete | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| connect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| update | StoryUpdateWithWhereUniqueWithoutAuthorInput | StoryUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | StoryUpdateManyWithWhereWithoutAuthorInput | StoryUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | StoryScalarWhereInput | StoryScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutArtistInput | StoryCreateWithoutArtistInput[] | StoryUncheckedCreateWithoutArtistInput | StoryUncheckedCreateWithoutArtistInput[] | No |
| connectOrCreate | StoryCreateOrConnectWithoutArtistInput | StoryCreateOrConnectWithoutArtistInput[] | No |
| createMany | StoryCreateManyArtistInputEnvelope | No |
| connect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageArtworkCreateWithoutArtistInput | PageArtworkCreateWithoutArtistInput[] | PageArtworkUncheckedCreateWithoutArtistInput | PageArtworkUncheckedCreateWithoutArtistInput[] | No |
| connectOrCreate | PageArtworkCreateOrConnectWithoutArtistInput | PageArtworkCreateOrConnectWithoutArtistInput[] | No |
| createMany | PageArtworkCreateManyArtistInputEnvelope | No |
| connect | PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutArtistInput | UserUncheckedCreateWithoutArtistInput | No |
| connectOrCreate | UserCreateOrConnectWithoutArtistInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutArtistInput | StoryCreateWithoutArtistInput[] | StoryUncheckedCreateWithoutArtistInput | StoryUncheckedCreateWithoutArtistInput[] | No |
| connectOrCreate | StoryCreateOrConnectWithoutArtistInput | StoryCreateOrConnectWithoutArtistInput[] | No |
| createMany | StoryCreateManyArtistInputEnvelope | No |
| connect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageArtworkCreateWithoutArtistInput | PageArtworkCreateWithoutArtistInput[] | PageArtworkUncheckedCreateWithoutArtistInput | PageArtworkUncheckedCreateWithoutArtistInput[] | No |
| connectOrCreate | PageArtworkCreateOrConnectWithoutArtistInput | PageArtworkCreateOrConnectWithoutArtistInput[] | No |
| createMany | PageArtworkCreateManyArtistInputEnvelope | No |
| connect | PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutArtistInput | StoryCreateWithoutArtistInput[] | StoryUncheckedCreateWithoutArtistInput | StoryUncheckedCreateWithoutArtistInput[] | No |
| connectOrCreate | StoryCreateOrConnectWithoutArtistInput | StoryCreateOrConnectWithoutArtistInput[] | No |
| upsert | StoryUpsertWithWhereUniqueWithoutArtistInput | StoryUpsertWithWhereUniqueWithoutArtistInput[] | No |
| createMany | StoryCreateManyArtistInputEnvelope | No |
| set | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| disconnect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| delete | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| connect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| update | StoryUpdateWithWhereUniqueWithoutArtistInput | StoryUpdateWithWhereUniqueWithoutArtistInput[] | No |
| updateMany | StoryUpdateManyWithWhereWithoutArtistInput | StoryUpdateManyWithWhereWithoutArtistInput[] | No |
| deleteMany | StoryScalarWhereInput | StoryScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutArtistInput | UserUncheckedCreateWithoutArtistInput | No |
| connectOrCreate | UserCreateOrConnectWithoutArtistInput | No |
| upsert | UserUpsertWithoutArtistInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutArtistInput | UserUncheckedUpdateWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutArtistInput | StoryCreateWithoutArtistInput[] | StoryUncheckedCreateWithoutArtistInput | StoryUncheckedCreateWithoutArtistInput[] | No |
| connectOrCreate | StoryCreateOrConnectWithoutArtistInput | StoryCreateOrConnectWithoutArtistInput[] | No |
| upsert | StoryUpsertWithWhereUniqueWithoutArtistInput | StoryUpsertWithWhereUniqueWithoutArtistInput[] | No |
| createMany | StoryCreateManyArtistInputEnvelope | No |
| set | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| disconnect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| delete | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| connect | StoryWhereUniqueInput | StoryWhereUniqueInput[] | No |
| update | StoryUpdateWithWhereUniqueWithoutArtistInput | StoryUpdateWithWhereUniqueWithoutArtistInput[] | No |
| updateMany | StoryUpdateManyWithWhereWithoutArtistInput | StoryUpdateManyWithWhereWithoutArtistInput[] | No |
| deleteMany | StoryScalarWhereInput | StoryScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageTextCreateWithoutTranslatorInput | PageTextCreateWithoutTranslatorInput[] | PageTextUncheckedCreateWithoutTranslatorInput | PageTextUncheckedCreateWithoutTranslatorInput[] | No |
| connectOrCreate | PageTextCreateOrConnectWithoutTranslatorInput | PageTextCreateOrConnectWithoutTranslatorInput[] | No |
| createMany | PageTextCreateManyTranslatorInputEnvelope | No |
| connect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageTextCreateWithoutTranslatorInput | PageTextCreateWithoutTranslatorInput[] | PageTextUncheckedCreateWithoutTranslatorInput | PageTextUncheckedCreateWithoutTranslatorInput[] | No |
| connectOrCreate | PageTextCreateOrConnectWithoutTranslatorInput | PageTextCreateOrConnectWithoutTranslatorInput[] | No |
| createMany | PageTextCreateManyTranslatorInputEnvelope | No |
| connect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | DreamBoothTrainingCreateWithoutConceptInput | DreamBoothTrainingUncheckedCreateWithoutConceptInput | No |
| connectOrCreate | DreamBoothTrainingCreateOrConnectWithoutConceptInput | No |
| connect | DreamBoothTrainingWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PhotoCreateWithoutConceptsInput | PhotoCreateWithoutConceptsInput[] | PhotoUncheckedCreateWithoutConceptsInput | PhotoUncheckedCreateWithoutConceptsInput[] | No |
| connectOrCreate | PhotoCreateOrConnectWithoutConceptsInput | PhotoCreateOrConnectWithoutConceptsInput[] | No |
| connect | PhotoWhereUniqueInput | PhotoWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PhotoCreateWithoutConceptsInput | PhotoCreateWithoutConceptsInput[] | PhotoUncheckedCreateWithoutConceptsInput | PhotoUncheckedCreateWithoutConceptsInput[] | No |
| connectOrCreate | PhotoCreateOrConnectWithoutConceptsInput | PhotoCreateOrConnectWithoutConceptsInput[] | No |
| connect | PhotoWhereUniqueInput | PhotoWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | ConceptType | No |
| Name | Type | Nullable |
|---|---|---|
| set | ConceptStatus | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | DreamBoothTrainingCreateWithoutConceptInput | DreamBoothTrainingUncheckedCreateWithoutConceptInput | No |
| connectOrCreate | DreamBoothTrainingCreateOrConnectWithoutConceptInput | No |
| upsert | DreamBoothTrainingUpsertWithoutConceptInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | DreamBoothTrainingWhereUniqueInput | No |
| update | DreamBoothTrainingUpdateWithoutConceptInput | DreamBoothTrainingUncheckedUpdateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PhotoCreateWithoutConceptsInput | PhotoCreateWithoutConceptsInput[] | PhotoUncheckedCreateWithoutConceptsInput | PhotoUncheckedCreateWithoutConceptsInput[] | No |
| connectOrCreate | PhotoCreateOrConnectWithoutConceptsInput | PhotoCreateOrConnectWithoutConceptsInput[] | No |
| upsert | PhotoUpsertWithWhereUniqueWithoutConceptsInput | PhotoUpsertWithWhereUniqueWithoutConceptsInput[] | No |
| set | PhotoWhereUniqueInput | PhotoWhereUniqueInput[] | No |
| disconnect | PhotoWhereUniqueInput | PhotoWhereUniqueInput[] | No |
| delete | PhotoWhereUniqueInput | PhotoWhereUniqueInput[] | No |
| connect | PhotoWhereUniqueInput | PhotoWhereUniqueInput[] | No |
| update | PhotoUpdateWithWhereUniqueWithoutConceptsInput | PhotoUpdateWithWhereUniqueWithoutConceptsInput[] | No |
| updateMany | PhotoUpdateManyWithWhereWithoutConceptsInput | PhotoUpdateManyWithWhereWithoutConceptsInput[] | No |
| deleteMany | PhotoScalarWhereInput | PhotoScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PhotoCreateWithoutConceptsInput | PhotoCreateWithoutConceptsInput[] | PhotoUncheckedCreateWithoutConceptsInput | PhotoUncheckedCreateWithoutConceptsInput[] | No |
| connectOrCreate | PhotoCreateOrConnectWithoutConceptsInput | PhotoCreateOrConnectWithoutConceptsInput[] | No |
| upsert | PhotoUpsertWithWhereUniqueWithoutConceptsInput | PhotoUpsertWithWhereUniqueWithoutConceptsInput[] | No |
| set | PhotoWhereUniqueInput | PhotoWhereUniqueInput[] | No |
| disconnect | PhotoWhereUniqueInput | PhotoWhereUniqueInput[] | No |
| delete | PhotoWhereUniqueInput | PhotoWhereUniqueInput[] | No |
| connect | PhotoWhereUniqueInput | PhotoWhereUniqueInput[] | No |
| update | PhotoUpdateWithWhereUniqueWithoutConceptsInput | PhotoUpdateWithWhereUniqueWithoutConceptsInput[] | No |
| updateMany | PhotoUpdateManyWithWhereWithoutConceptsInput | PhotoUpdateManyWithWhereWithoutConceptsInput[] | No |
| deleteMany | PhotoScalarWhereInput | PhotoScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | No |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| set | Float | No |
| increment | Float | No |
| decrement | Float | No |
| multiply | Float | No |
| divide | Float | No |
| Name | Type | Nullable |
|---|---|---|
| set | LRScheduler | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutEditionsInput | UserUncheckedCreateWithoutEditionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutEditionsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PDFCreateWithoutEditionInput | PDFUncheckedCreateWithoutEditionInput | No |
| connectOrCreate | PDFCreateOrConnectWithoutEditionInput | No |
| connect | PDFWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutEditionsInput | UserUncheckedCreateWithoutEditionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutEditionsInput | No |
| upsert | UserUpsertWithoutEditionsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutEditionsInput | UserUncheckedUpdateWithoutEditionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PDFCreateWithoutEditionInput | PDFUncheckedCreateWithoutEditionInput | No |
| connectOrCreate | PDFCreateOrConnectWithoutEditionInput | No |
| upsert | PDFUpsertWithoutEditionInput | No |
| connect | PDFWhereUniqueInput | No |
| update | PDFUpdateWithoutEditionInput | PDFUncheckedUpdateWithoutEditionInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PhotoCreateWithoutFileInput | PhotoUncheckedCreateWithoutFileInput | No |
| connectOrCreate | PhotoCreateOrConnectWithoutFileInput | No |
| connect | PhotoWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PDFCreateWithoutFileInput | PDFUncheckedCreateWithoutFileInput | No |
| connectOrCreate | PDFCreateOrConnectWithoutFileInput | No |
| connect | PDFWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PhotoCreateWithoutFileInput | PhotoUncheckedCreateWithoutFileInput | No |
| connectOrCreate | PhotoCreateOrConnectWithoutFileInput | No |
| connect | PhotoWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PDFCreateWithoutFileInput | PDFUncheckedCreateWithoutFileInput | No |
| connectOrCreate | PDFCreateOrConnectWithoutFileInput | No |
| connect | PDFWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | FileResourceType | No |
| Name | Type | Nullable |
|---|---|---|
| set | CloudFileRegion | No |
| Name | Type | Nullable |
|---|---|---|
| set | FilePrivacy | No |
| Name | Type | Nullable |
|---|---|---|
| create | PhotoCreateWithoutFileInput | PhotoUncheckedCreateWithoutFileInput | No |
| connectOrCreate | PhotoCreateOrConnectWithoutFileInput | No |
| upsert | PhotoUpsertWithoutFileInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PhotoWhereUniqueInput | No |
| update | PhotoUpdateWithoutFileInput | PhotoUncheckedUpdateWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PDFCreateWithoutFileInput | PDFUncheckedCreateWithoutFileInput | No |
| connectOrCreate | PDFCreateOrConnectWithoutFileInput | No |
| upsert | PDFUpsertWithoutFileInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PDFWhereUniqueInput | No |
| update | PDFUpdateWithoutFileInput | PDFUncheckedUpdateWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PhotoCreateWithoutFileInput | PhotoUncheckedCreateWithoutFileInput | No |
| connectOrCreate | PhotoCreateOrConnectWithoutFileInput | No |
| upsert | PhotoUpsertWithoutFileInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PhotoWhereUniqueInput | No |
| update | PhotoUpdateWithoutFileInput | PhotoUncheckedUpdateWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PDFCreateWithoutFileInput | PDFUncheckedCreateWithoutFileInput | No |
| connectOrCreate | PDFCreateOrConnectWithoutFileInput | No |
| upsert | PDFUpsertWithoutFileInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | PDFWhereUniqueInput | No |
| update | PDFUpdateWithoutFileInput | PDFUncheckedUpdateWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | CloudFileCreateWithoutPhotoInput | CloudFileUncheckedCreateWithoutPhotoInput | No |
| connectOrCreate | CloudFileCreateOrConnectWithoutPhotoInput | No |
| connect | CloudFileWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageArtworkCreateWithoutPhotoInput | PageArtworkCreateWithoutPhotoInput[] | PageArtworkUncheckedCreateWithoutPhotoInput | PageArtworkUncheckedCreateWithoutPhotoInput[] | No |
| connectOrCreate | PageArtworkCreateOrConnectWithoutPhotoInput | PageArtworkCreateOrConnectWithoutPhotoInput[] | No |
| createMany | PageArtworkCreateManyPhotoInputEnvelope | No |
| connect | PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutPhotosInput | ConceptCreateWithoutPhotosInput[] | ConceptUncheckedCreateWithoutPhotosInput | ConceptUncheckedCreateWithoutPhotosInput[] | No |
| connectOrCreate | ConceptCreateOrConnectWithoutPhotosInput | ConceptCreateOrConnectWithoutPhotosInput[] | No |
| connect | ConceptWhereUniqueInput | ConceptWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageArtworkCreateWithoutPhotoInput | PageArtworkCreateWithoutPhotoInput[] | PageArtworkUncheckedCreateWithoutPhotoInput | PageArtworkUncheckedCreateWithoutPhotoInput[] | No |
| connectOrCreate | PageArtworkCreateOrConnectWithoutPhotoInput | PageArtworkCreateOrConnectWithoutPhotoInput[] | No |
| createMany | PageArtworkCreateManyPhotoInputEnvelope | No |
| connect | PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConceptCreateWithoutPhotosInput | ConceptCreateWithoutPhotosInput[] | ConceptUncheckedCreateWithoutPhotosInput | ConceptUncheckedCreateWithoutPhotosInput[] | No |
| connectOrCreate | ConceptCreateOrConnectWithoutPhotosInput | ConceptCreateOrConnectWithoutPhotosInput[] | No |
| connect | ConceptWhereUniqueInput | ConceptWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | CloudFileCreateWithoutPhotoInput | CloudFileUncheckedCreateWithoutPhotoInput | No |
| connectOrCreate | CloudFileCreateOrConnectWithoutPhotoInput | No |
| upsert | CloudFileUpsertWithoutPhotoInput | No |
| connect | CloudFileWhereUniqueInput | No |
| update | CloudFileUpdateWithoutPhotoInput | CloudFileUncheckedUpdateWithoutPhotoInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | CloudFileCreateWithoutPdfInput | CloudFileUncheckedCreateWithoutPdfInput | No |
| connectOrCreate | CloudFileCreateOrConnectWithoutPdfInput | No |
| connect | CloudFileWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EditionCreateWithoutPdfInput | EditionUncheckedCreateWithoutPdfInput | No |
| connectOrCreate | EditionCreateOrConnectWithoutPdfInput | No |
| connect | EditionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EditionCreateWithoutPdfInput | EditionUncheckedCreateWithoutPdfInput | No |
| connectOrCreate | EditionCreateOrConnectWithoutPdfInput | No |
| connect | EditionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| push | String | String | No |
| Name | Type | Nullable |
|---|---|---|
| create | CloudFileCreateWithoutPdfInput | CloudFileUncheckedCreateWithoutPdfInput | No |
| connectOrCreate | CloudFileCreateOrConnectWithoutPdfInput | No |
| upsert | CloudFileUpsertWithoutPdfInput | No |
| connect | CloudFileWhereUniqueInput | No |
| update | CloudFileUpdateWithoutPdfInput | CloudFileUncheckedUpdateWithoutPdfInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EditionCreateWithoutPdfInput | EditionUncheckedCreateWithoutPdfInput | No |
| connectOrCreate | EditionCreateOrConnectWithoutPdfInput | No |
| upsert | EditionUpsertWithoutPdfInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | EditionWhereUniqueInput | No |
| update | EditionUpdateWithoutPdfInput | EditionUncheckedUpdateWithoutPdfInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | EditionCreateWithoutPdfInput | EditionUncheckedCreateWithoutPdfInput | No |
| connectOrCreate | EditionCreateOrConnectWithoutPdfInput | No |
| upsert | EditionUpsertWithoutPdfInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | EditionWhereUniqueInput | No |
| update | EditionUpdateWithoutPdfInput | EditionUncheckedUpdateWithoutPdfInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ArtistCreateWithoutStoriesInput | ArtistUncheckedCreateWithoutStoriesInput | No |
| connectOrCreate | ArtistCreateOrConnectWithoutStoriesInput | No |
| connect | ArtistWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AuthorCreateWithoutStoriesInput | AuthorUncheckedCreateWithoutStoriesInput | No |
| connectOrCreate | AuthorCreateOrConnectWithoutStoriesInput | No |
| connect | AuthorWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageCreateWithoutStoryInput | PageCreateWithoutStoryInput[] | PageUncheckedCreateWithoutStoryInput | PageUncheckedCreateWithoutStoryInput[] | No |
| connectOrCreate | PageCreateOrConnectWithoutStoryInput | PageCreateOrConnectWithoutStoryInput[] | No |
| createMany | PageCreateManyStoryInputEnvelope | No |
| connect | PageWhereUniqueInput | PageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageArtworkCreateWithoutStoryInput | PageArtworkCreateWithoutStoryInput[] | PageArtworkUncheckedCreateWithoutStoryInput | PageArtworkUncheckedCreateWithoutStoryInput[] | No |
| connectOrCreate | PageArtworkCreateOrConnectWithoutStoryInput | PageArtworkCreateOrConnectWithoutStoryInput[] | No |
| createMany | PageArtworkCreateManyStoryInputEnvelope | No |
| connect | PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageTextCreateWithoutStoryInput | PageTextCreateWithoutStoryInput[] | PageTextUncheckedCreateWithoutStoryInput | PageTextUncheckedCreateWithoutStoryInput[] | No |
| connectOrCreate | PageTextCreateOrConnectWithoutStoryInput | PageTextCreateOrConnectWithoutStoryInput[] | No |
| createMany | PageTextCreateManyStoryInputEnvelope | No |
| connect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageCreateWithoutStoryInput | PageCreateWithoutStoryInput[] | PageUncheckedCreateWithoutStoryInput | PageUncheckedCreateWithoutStoryInput[] | No |
| connectOrCreate | PageCreateOrConnectWithoutStoryInput | PageCreateOrConnectWithoutStoryInput[] | No |
| createMany | PageCreateManyStoryInputEnvelope | No |
| connect | PageWhereUniqueInput | PageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageArtworkCreateWithoutStoryInput | PageArtworkCreateWithoutStoryInput[] | PageArtworkUncheckedCreateWithoutStoryInput | PageArtworkUncheckedCreateWithoutStoryInput[] | No |
| connectOrCreate | PageArtworkCreateOrConnectWithoutStoryInput | PageArtworkCreateOrConnectWithoutStoryInput[] | No |
| createMany | PageArtworkCreateManyStoryInputEnvelope | No |
| connect | PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageTextCreateWithoutStoryInput | PageTextCreateWithoutStoryInput[] | PageTextUncheckedCreateWithoutStoryInput | PageTextUncheckedCreateWithoutStoryInput[] | No |
| connectOrCreate | PageTextCreateOrConnectWithoutStoryInput | PageTextCreateOrConnectWithoutStoryInput[] | No |
| createMany | PageTextCreateManyStoryInputEnvelope | No |
| connect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ArtistCreateWithoutStoriesInput | ArtistUncheckedCreateWithoutStoriesInput | No |
| connectOrCreate | ArtistCreateOrConnectWithoutStoriesInput | No |
| upsert | ArtistUpsertWithoutStoriesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ArtistWhereUniqueInput | No |
| update | ArtistUpdateWithoutStoriesInput | ArtistUncheckedUpdateWithoutStoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AuthorCreateWithoutStoriesInput | AuthorUncheckedCreateWithoutStoriesInput | No |
| connectOrCreate | AuthorCreateOrConnectWithoutStoriesInput | No |
| upsert | AuthorUpsertWithoutStoriesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | AuthorWhereUniqueInput | No |
| update | AuthorUpdateWithoutStoriesInput | AuthorUncheckedUpdateWithoutStoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageCreateWithoutStoryInput | PageCreateWithoutStoryInput[] | PageUncheckedCreateWithoutStoryInput | PageUncheckedCreateWithoutStoryInput[] | No |
| connectOrCreate | PageCreateOrConnectWithoutStoryInput | PageCreateOrConnectWithoutStoryInput[] | No |
| upsert | PageUpsertWithWhereUniqueWithoutStoryInput | PageUpsertWithWhereUniqueWithoutStoryInput[] | No |
| createMany | PageCreateManyStoryInputEnvelope | No |
| set | PageWhereUniqueInput | PageWhereUniqueInput[] | No |
| disconnect | PageWhereUniqueInput | PageWhereUniqueInput[] | No |
| delete | PageWhereUniqueInput | PageWhereUniqueInput[] | No |
| connect | PageWhereUniqueInput | PageWhereUniqueInput[] | No |
| update | PageUpdateWithWhereUniqueWithoutStoryInput | PageUpdateWithWhereUniqueWithoutStoryInput[] | No |
| updateMany | PageUpdateManyWithWhereWithoutStoryInput | PageUpdateManyWithWhereWithoutStoryInput[] | No |
| deleteMany | PageScalarWhereInput | PageScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageTextCreateWithoutStoryInput | PageTextCreateWithoutStoryInput[] | PageTextUncheckedCreateWithoutStoryInput | PageTextUncheckedCreateWithoutStoryInput[] | No |
| connectOrCreate | PageTextCreateOrConnectWithoutStoryInput | PageTextCreateOrConnectWithoutStoryInput[] | No |
| upsert | PageTextUpsertWithWhereUniqueWithoutStoryInput | PageTextUpsertWithWhereUniqueWithoutStoryInput[] | No |
| createMany | PageTextCreateManyStoryInputEnvelope | No |
| set | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| disconnect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| delete | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| connect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| update | PageTextUpdateWithWhereUniqueWithoutStoryInput | PageTextUpdateWithWhereUniqueWithoutStoryInput[] | No |
| updateMany | PageTextUpdateManyWithWhereWithoutStoryInput | PageTextUpdateManyWithWhereWithoutStoryInput[] | No |
| deleteMany | PageTextScalarWhereInput | PageTextScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageCreateWithoutStoryInput | PageCreateWithoutStoryInput[] | PageUncheckedCreateWithoutStoryInput | PageUncheckedCreateWithoutStoryInput[] | No |
| connectOrCreate | PageCreateOrConnectWithoutStoryInput | PageCreateOrConnectWithoutStoryInput[] | No |
| upsert | PageUpsertWithWhereUniqueWithoutStoryInput | PageUpsertWithWhereUniqueWithoutStoryInput[] | No |
| createMany | PageCreateManyStoryInputEnvelope | No |
| set | PageWhereUniqueInput | PageWhereUniqueInput[] | No |
| disconnect | PageWhereUniqueInput | PageWhereUniqueInput[] | No |
| delete | PageWhereUniqueInput | PageWhereUniqueInput[] | No |
| connect | PageWhereUniqueInput | PageWhereUniqueInput[] | No |
| update | PageUpdateWithWhereUniqueWithoutStoryInput | PageUpdateWithWhereUniqueWithoutStoryInput[] | No |
| updateMany | PageUpdateManyWithWhereWithoutStoryInput | PageUpdateManyWithWhereWithoutStoryInput[] | No |
| deleteMany | PageScalarWhereInput | PageScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageTextCreateWithoutStoryInput | PageTextCreateWithoutStoryInput[] | PageTextUncheckedCreateWithoutStoryInput | PageTextUncheckedCreateWithoutStoryInput[] | No |
| connectOrCreate | PageTextCreateOrConnectWithoutStoryInput | PageTextCreateOrConnectWithoutStoryInput[] | No |
| upsert | PageTextUpsertWithWhereUniqueWithoutStoryInput | PageTextUpsertWithWhereUniqueWithoutStoryInput[] | No |
| createMany | PageTextCreateManyStoryInputEnvelope | No |
| set | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| disconnect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| delete | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| connect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| update | PageTextUpdateWithWhereUniqueWithoutStoryInput | PageTextUpdateWithWhereUniqueWithoutStoryInput[] | No |
| updateMany | PageTextUpdateManyWithWhereWithoutStoryInput | PageTextUpdateManyWithWhereWithoutStoryInput[] | No |
| deleteMany | PageTextScalarWhereInput | PageTextScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageCreateWithoutArtworksInput | PageUncheckedCreateWithoutArtworksInput | No |
| connectOrCreate | PageCreateOrConnectWithoutArtworksInput | No |
| connect | PageWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutPageArtworksInput | StoryUncheckedCreateWithoutPageArtworksInput | No |
| connectOrCreate | StoryCreateOrConnectWithoutPageArtworksInput | No |
| connect | StoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ArtistCreateWithoutPageArtworksInput | ArtistUncheckedCreateWithoutPageArtworksInput | No |
| connectOrCreate | ArtistCreateOrConnectWithoutPageArtworksInput | No |
| connect | ArtistWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PhotoCreateWithoutPageArtworksInput | PhotoUncheckedCreateWithoutPageArtworksInput | No |
| connectOrCreate | PhotoCreateOrConnectWithoutPageArtworksInput | No |
| connect | PhotoWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | PageStatus | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageCreateWithoutArtworksInput | PageUncheckedCreateWithoutArtworksInput | No |
| connectOrCreate | PageCreateOrConnectWithoutArtworksInput | No |
| upsert | PageUpsertWithoutArtworksInput | No |
| connect | PageWhereUniqueInput | No |
| update | PageUpdateWithoutArtworksInput | PageUncheckedUpdateWithoutArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutPageArtworksInput | StoryUncheckedCreateWithoutPageArtworksInput | No |
| connectOrCreate | StoryCreateOrConnectWithoutPageArtworksInput | No |
| upsert | StoryUpsertWithoutPageArtworksInput | No |
| connect | StoryWhereUniqueInput | No |
| update | StoryUpdateWithoutPageArtworksInput | StoryUncheckedUpdateWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ArtistCreateWithoutPageArtworksInput | ArtistUncheckedCreateWithoutPageArtworksInput | No |
| connectOrCreate | ArtistCreateOrConnectWithoutPageArtworksInput | No |
| upsert | ArtistUpsertWithoutPageArtworksInput | No |
| connect | ArtistWhereUniqueInput | No |
| update | ArtistUpdateWithoutPageArtworksInput | ArtistUncheckedUpdateWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PhotoCreateWithoutPageArtworksInput | PhotoUncheckedCreateWithoutPageArtworksInput | No |
| connectOrCreate | PhotoCreateOrConnectWithoutPageArtworksInput | No |
| upsert | PhotoUpsertWithoutPageArtworksInput | No |
| connect | PhotoWhereUniqueInput | No |
| update | PhotoUpdateWithoutPageArtworksInput | PhotoUncheckedUpdateWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageCreateWithoutTextsInput | PageUncheckedCreateWithoutTextsInput | No |
| connectOrCreate | PageCreateOrConnectWithoutTextsInput | No |
| connect | PageWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutPageTextsInput | StoryUncheckedCreateWithoutPageTextsInput | No |
| connectOrCreate | StoryCreateOrConnectWithoutPageTextsInput | No |
| connect | StoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AuthorCreateWithoutPageTextsInput | AuthorUncheckedCreateWithoutPageTextsInput | No |
| connectOrCreate | AuthorCreateOrConnectWithoutPageTextsInput | No |
| connect | AuthorWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TranslatorCreateWithoutPageTextsInput | TranslatorUncheckedCreateWithoutPageTextsInput | No |
| connectOrCreate | TranslatorCreateOrConnectWithoutPageTextsInput | No |
| connect | TranslatorWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Locale | No |
| Name | Type | Nullable |
|---|---|---|
| set | PageTextType | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageCreateWithoutTextsInput | PageUncheckedCreateWithoutTextsInput | No |
| connectOrCreate | PageCreateOrConnectWithoutTextsInput | No |
| upsert | PageUpsertWithoutTextsInput | No |
| connect | PageWhereUniqueInput | No |
| update | PageUpdateWithoutTextsInput | PageUncheckedUpdateWithoutTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutPageTextsInput | StoryUncheckedCreateWithoutPageTextsInput | No |
| connectOrCreate | StoryCreateOrConnectWithoutPageTextsInput | No |
| upsert | StoryUpsertWithoutPageTextsInput | No |
| connect | StoryWhereUniqueInput | No |
| update | StoryUpdateWithoutPageTextsInput | StoryUncheckedUpdateWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AuthorCreateWithoutPageTextsInput | AuthorUncheckedCreateWithoutPageTextsInput | No |
| connectOrCreate | AuthorCreateOrConnectWithoutPageTextsInput | No |
| upsert | AuthorUpsertWithoutPageTextsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | AuthorWhereUniqueInput | No |
| update | AuthorUpdateWithoutPageTextsInput | AuthorUncheckedUpdateWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TranslatorCreateWithoutPageTextsInput | TranslatorUncheckedCreateWithoutPageTextsInput | No |
| connectOrCreate | TranslatorCreateOrConnectWithoutPageTextsInput | No |
| upsert | TranslatorUpsertWithoutPageTextsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | TranslatorWhereUniqueInput | No |
| update | TranslatorUpdateWithoutPageTextsInput | TranslatorUncheckedUpdateWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutPagesInput | StoryUncheckedCreateWithoutPagesInput | No |
| connectOrCreate | StoryCreateOrConnectWithoutPagesInput | No |
| connect | StoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageArtworkCreateWithoutPageInput | PageArtworkCreateWithoutPageInput[] | PageArtworkUncheckedCreateWithoutPageInput | PageArtworkUncheckedCreateWithoutPageInput[] | No |
| connectOrCreate | PageArtworkCreateOrConnectWithoutPageInput | PageArtworkCreateOrConnectWithoutPageInput[] | No |
| createMany | PageArtworkCreateManyPageInputEnvelope | No |
| connect | PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageTextCreateWithoutPageInput | PageTextCreateWithoutPageInput[] | PageTextUncheckedCreateWithoutPageInput | PageTextUncheckedCreateWithoutPageInput[] | No |
| connectOrCreate | PageTextCreateOrConnectWithoutPageInput | PageTextCreateOrConnectWithoutPageInput[] | No |
| createMany | PageTextCreateManyPageInputEnvelope | No |
| connect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageArtworkCreateWithoutPageInput | PageArtworkCreateWithoutPageInput[] | PageArtworkUncheckedCreateWithoutPageInput | PageArtworkUncheckedCreateWithoutPageInput[] | No |
| connectOrCreate | PageArtworkCreateOrConnectWithoutPageInput | PageArtworkCreateOrConnectWithoutPageInput[] | No |
| createMany | PageArtworkCreateManyPageInputEnvelope | No |
| connect | PageArtworkWhereUniqueInput | PageArtworkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageTextCreateWithoutPageInput | PageTextCreateWithoutPageInput[] | PageTextUncheckedCreateWithoutPageInput | PageTextUncheckedCreateWithoutPageInput[] | No |
| connectOrCreate | PageTextCreateOrConnectWithoutPageInput | PageTextCreateOrConnectWithoutPageInput[] | No |
| createMany | PageTextCreateManyPageInputEnvelope | No |
| connect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | PageType | No |
| Name | Type | Nullable |
|---|---|---|
| create | StoryCreateWithoutPagesInput | StoryUncheckedCreateWithoutPagesInput | No |
| connectOrCreate | StoryCreateOrConnectWithoutPagesInput | No |
| upsert | StoryUpsertWithoutPagesInput | No |
| connect | StoryWhereUniqueInput | No |
| update | StoryUpdateWithoutPagesInput | StoryUncheckedUpdateWithoutPagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageTextCreateWithoutPageInput | PageTextCreateWithoutPageInput[] | PageTextUncheckedCreateWithoutPageInput | PageTextUncheckedCreateWithoutPageInput[] | No |
| connectOrCreate | PageTextCreateOrConnectWithoutPageInput | PageTextCreateOrConnectWithoutPageInput[] | No |
| upsert | PageTextUpsertWithWhereUniqueWithoutPageInput | PageTextUpsertWithWhereUniqueWithoutPageInput[] | No |
| createMany | PageTextCreateManyPageInputEnvelope | No |
| set | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| disconnect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| delete | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| connect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| update | PageTextUpdateWithWhereUniqueWithoutPageInput | PageTextUpdateWithWhereUniqueWithoutPageInput[] | No |
| updateMany | PageTextUpdateManyWithWhereWithoutPageInput | PageTextUpdateManyWithWhereWithoutPageInput[] | No |
| deleteMany | PageTextScalarWhereInput | PageTextScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | PageTextCreateWithoutPageInput | PageTextCreateWithoutPageInput[] | PageTextUncheckedCreateWithoutPageInput | PageTextUncheckedCreateWithoutPageInput[] | No |
| connectOrCreate | PageTextCreateOrConnectWithoutPageInput | PageTextCreateOrConnectWithoutPageInput[] | No |
| upsert | PageTextUpsertWithWhereUniqueWithoutPageInput | PageTextUpsertWithWhereUniqueWithoutPageInput[] | No |
| createMany | PageTextCreateManyPageInputEnvelope | No |
| set | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| disconnect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| delete | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| connect | PageTextWhereUniqueInput | PageTextWhereUniqueInput[] | No |
| update | PageTextUpdateWithWhereUniqueWithoutPageInput | PageTextUpdateWithWhereUniqueWithoutPageInput[] | No |
| updateMany | PageTextUpdateManyWithWhereWithoutPageInput | PageTextUpdateManyWithWhereWithoutPageInput[] | No |
| deleteMany | PageTextScalarWhereInput | PageTextScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | String | No |
| notIn | String | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | DateTime | No |
| notIn | DateTime | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | DateTime | Null | Yes |
| notIn | DateTime | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | String | Null | Yes |
| notIn | String | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | String | No |
| notIn | String | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | Int | No |
| notIn | Int | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | DateTime | No |
| notIn | DateTime | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | DateTime | Null | Yes |
| notIn | DateTime | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Int | Null | Yes |
| notIn | Int | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | String | Null | Yes |
| notIn | String | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ConceptType | No |
| in | ConceptType[] | ConceptType | No |
| notIn | ConceptType[] | ConceptType | No |
| not | ConceptType | NestedEnumConceptTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ConceptStatus | No |
| in | ConceptStatus[] | ConceptStatus | No |
| notIn | ConceptStatus[] | ConceptStatus | No |
| not | ConceptStatus | NestedEnumConceptStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ConceptType | No |
| in | ConceptType[] | ConceptType | No |
| notIn | ConceptType[] | ConceptType | No |
| not | ConceptType | NestedEnumConceptTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumConceptTypeFilter | No |
| _max | NestedEnumConceptTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ConceptStatus | No |
| in | ConceptStatus[] | ConceptStatus | No |
| notIn | ConceptStatus[] | ConceptStatus | No |
| not | ConceptStatus | NestedEnumConceptStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumConceptStatusFilter | No |
| _max | NestedEnumConceptStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | No |
| string_starts_with | String | No |
| string_ends_with | String | No |
| array_contains | Json | Null | Yes |
| array_starts_with | Json | Null | Yes |
| array_ends_with | Json | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | No |
| in | Float | Float | No |
| notIn | Float | Float | No |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | LRScheduler | No |
| in | LRScheduler[] | LRScheduler | No |
| notIn | LRScheduler[] | LRScheduler | No |
| not | LRScheduler | NestedEnumLRSchedulerFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | Int | No |
| notIn | Int | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | No |
| in | Float | Float | No |
| notIn | Float | Float | No |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedFloatFilter | No |
| _min | NestedFloatFilter | No |
| _max | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | LRScheduler | No |
| in | LRScheduler[] | LRScheduler | No |
| notIn | LRScheduler[] | LRScheduler | No |
| not | LRScheduler | NestedEnumLRSchedulerWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumLRSchedulerFilter | No |
| _max | NestedEnumLRSchedulerFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FileResourceType | No |
| in | FileResourceType[] | FileResourceType | No |
| notIn | FileResourceType[] | FileResourceType | No |
| not | FileResourceType | NestedEnumFileResourceTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CloudFileRegion | No |
| in | CloudFileRegion[] | CloudFileRegion | No |
| notIn | CloudFileRegion[] | CloudFileRegion | No |
| not | CloudFileRegion | NestedEnumCloudFileRegionFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FilePrivacy | No |
| in | FilePrivacy[] | FilePrivacy | No |
| notIn | FilePrivacy[] | FilePrivacy | No |
| not | FilePrivacy | NestedEnumFilePrivacyFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FileResourceType | No |
| in | FileResourceType[] | FileResourceType | No |
| notIn | FileResourceType[] | FileResourceType | No |
| not | FileResourceType | NestedEnumFileResourceTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumFileResourceTypeFilter | No |
| _max | NestedEnumFileResourceTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CloudFileRegion | No |
| in | CloudFileRegion[] | CloudFileRegion | No |
| notIn | CloudFileRegion[] | CloudFileRegion | No |
| not | CloudFileRegion | NestedEnumCloudFileRegionWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumCloudFileRegionFilter | No |
| _max | NestedEnumCloudFileRegionFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FilePrivacy | No |
| in | FilePrivacy[] | FilePrivacy | No |
| notIn | FilePrivacy[] | FilePrivacy | No |
| not | FilePrivacy | NestedEnumFilePrivacyWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumFilePrivacyFilter | No |
| _max | NestedEnumFilePrivacyFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PageStatus | No |
| in | PageStatus[] | PageStatus | No |
| notIn | PageStatus[] | PageStatus | No |
| not | PageStatus | NestedEnumPageStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PageStatus | No |
| in | PageStatus[] | PageStatus | No |
| notIn | PageStatus[] | PageStatus | No |
| not | PageStatus | NestedEnumPageStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPageStatusFilter | No |
| _max | NestedEnumPageStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Locale | No |
| in | Locale[] | Locale | No |
| notIn | Locale[] | Locale | No |
| not | Locale | NestedEnumLocaleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PageTextType | No |
| in | PageTextType[] | PageTextType | No |
| notIn | PageTextType[] | PageTextType | No |
| not | PageTextType | NestedEnumPageTextTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Locale | No |
| in | Locale[] | Locale | No |
| notIn | Locale[] | Locale | No |
| not | Locale | NestedEnumLocaleWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumLocaleFilter | No |
| _max | NestedEnumLocaleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PageTextType | No |
| in | PageTextType[] | PageTextType | No |
| notIn | PageTextType[] | PageTextType | No |
| not | PageTextType | NestedEnumPageTextTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPageTextTypeFilter | No |
| _max | NestedEnumPageTextTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PageType | No |
| in | PageType[] | PageType | No |
| notIn | PageType[] | PageType | No |
| not | PageType | NestedEnumPageTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PageType | No |
| in | PageType[] | PageType | No |
| notIn | PageType[] | PageType | No |
| not | PageType | NestedEnumPageTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPageTypeFilter | No |
| _max | NestedEnumPageTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| stories | StoryCreateNestedManyWithoutArtistInput | No |
| pageArtworks | PageArtworkCreateNestedManyWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| stories | StoryUncheckedCreateNestedManyWithoutArtistInput | No |
| pageArtworks | PageArtworkUncheckedCreateNestedManyWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ArtistWhereUniqueInput | No |
| create | ArtistCreateWithoutUserInput | ArtistUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| stories | StoryCreateNestedManyWithoutAuthorInput | No |
| pageTexts | PageTextCreateNestedManyWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| stories | StoryUncheckedCreateNestedManyWithoutAuthorInput | No |
| pageTexts | PageTextUncheckedCreateNestedManyWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AuthorWhereUniqueInput | No |
| create | AuthorCreateWithoutUserInput | AuthorUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| PDFCreateNestedOneWithoutEditionInput | No |
| Name | Type | Nullable |
|---|---|---|
| pdfId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | EditionWhereUniqueInput | No |
| create | EditionCreateWithoutUserInput | EditionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | EditionCreateManyUserInput | EditionCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | ArtistUpdateWithoutUserInput | ArtistUncheckedUpdateWithoutUserInput | No |
| create | ArtistCreateWithoutUserInput | ArtistUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| stories | StoryUpdateManyWithoutArtistNestedInput | No |
| pageArtworks | PageArtworkUpdateManyWithoutArtistNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| stories | StoryUncheckedUpdateManyWithoutArtistNestedInput | No |
| pageArtworks | PageArtworkUncheckedUpdateManyWithoutArtistNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | AuthorUpdateWithoutUserInput | AuthorUncheckedUpdateWithoutUserInput | No |
| create | AuthorCreateWithoutUserInput | AuthorUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| stories | StoryUpdateManyWithoutAuthorNestedInput | No |
| pageTexts | PageTextUpdateManyWithoutAuthorNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| stories | StoryUncheckedUpdateManyWithoutAuthorNestedInput | No |
| pageTexts | PageTextUncheckedUpdateManyWithoutAuthorNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EditionWhereUniqueInput | No |
| update | EditionUpdateWithoutUserInput | EditionUncheckedUpdateWithoutUserInput | No |
| create | EditionCreateWithoutUserInput | EditionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EditionWhereUniqueInput | No |
| data | EditionUpdateWithoutUserInput | EditionUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | EditionScalarWhereInput | No |
| data | EditionUpdateManyMutationInput | EditionUncheckedUpdateManyWithoutEditionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | EditionScalarWhereInput | EditionScalarWhereInput[] | No |
| OR | EditionScalarWhereInput[] | No |
| NOT | EditionScalarWhereInput | EditionScalarWhereInput[] | No |
| userId | StringFilter | String | No |
| pdfId | StringFilter | String | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| artist | ArtistCreateNestedOneWithoutStoriesInput | No |
| pages | PageCreateNestedManyWithoutStoryInput | No |
| pageArtworks | PageArtworkCreateNestedManyWithoutStoryInput | No |
| pageTexts | PageTextCreateNestedManyWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| pages | PageUncheckedCreateNestedManyWithoutStoryInput | No |
| pageArtworks | PageArtworkUncheckedCreateNestedManyWithoutStoryInput | No |
| pageTexts | PageTextUncheckedCreateNestedManyWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryWhereUniqueInput | No |
| create | StoryCreateWithoutAuthorInput | StoryUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | StoryCreateManyAuthorInput | StoryCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| page | PageCreateNestedOneWithoutTextsInput | No |
| story | StoryCreateNestedOneWithoutPageTextsInput | No |
| translator | TranslatorCreateNestedOneWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| pageId | String | No |
| storyId | String | No |
| translatorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextWhereUniqueInput | No |
| create | PageTextCreateWithoutAuthorInput | PageTextUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PageTextCreateManyAuthorInput | PageTextCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| String | No | |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| artist | ArtistCreateNestedOneWithoutUserInput | No |
| editions | EditionCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| String | No | |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| artist | ArtistUncheckedCreateNestedOneWithoutUserInput | No |
| editions | EditionUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutAuthorInput | UserUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryWhereUniqueInput | No |
| update | StoryUpdateWithoutAuthorInput | StoryUncheckedUpdateWithoutAuthorInput | No |
| create | StoryCreateWithoutAuthorInput | StoryUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryWhereUniqueInput | No |
| data | StoryUpdateWithoutAuthorInput | StoryUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryScalarWhereInput | No |
| data | StoryUpdateManyMutationInput | StoryUncheckedUpdateManyWithoutStoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | StoryScalarWhereInput | StoryScalarWhereInput[] | No |
| OR | StoryScalarWhereInput[] | No |
| NOT | StoryScalarWhereInput | StoryScalarWhereInput[] | No |
| artistId | StringNullableFilter | String | Null | Yes |
| authorId | StringNullableFilter | String | Null | Yes |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextWhereUniqueInput | No |
| update | PageTextUpdateWithoutAuthorInput | PageTextUncheckedUpdateWithoutAuthorInput | No |
| create | PageTextCreateWithoutAuthorInput | PageTextUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextWhereUniqueInput | No |
| data | PageTextUpdateWithoutAuthorInput | PageTextUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextScalarWhereInput | No |
| data | PageTextUpdateManyMutationInput | PageTextUncheckedUpdateManyWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PageTextScalarWhereInput | PageTextScalarWhereInput[] | No |
| OR | PageTextScalarWhereInput[] | No |
| NOT | PageTextScalarWhereInput | PageTextScalarWhereInput[] | No |
| status | EnumPageStatusFilter | PageStatus | No |
| locale | EnumLocaleFilter | Locale | No |
| text | StringFilter | String | No |
| type | EnumPageTextTypeFilter | PageTextType | No |
| pageId | StringFilter | String | No |
| storyId | StringFilter | String | No |
| authorId | StringNullableFilter | String | Null | Yes |
| translatorId | StringNullableFilter | String | Null | Yes |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutAuthorInput | UserUncheckedUpdateWithoutAuthorInput | No |
| create | UserCreateWithoutAuthorInput | UserUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| artist | ArtistUpdateOneWithoutUserNestedInput | No |
| editions | EditionUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| artist | ArtistUncheckedUpdateOneWithoutUserNestedInput | No |
| editions | EditionUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| author | AuthorCreateNestedOneWithoutStoriesInput | No |
| pages | PageCreateNestedManyWithoutStoryInput | No |
| pageArtworks | PageArtworkCreateNestedManyWithoutStoryInput | No |
| pageTexts | PageTextCreateNestedManyWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| pages | PageUncheckedCreateNestedManyWithoutStoryInput | No |
| pageArtworks | PageArtworkUncheckedCreateNestedManyWithoutStoryInput | No |
| pageTexts | PageTextUncheckedCreateNestedManyWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryWhereUniqueInput | No |
| create | StoryCreateWithoutArtistInput | StoryUncheckedCreateWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | StoryCreateManyArtistInput | StoryCreateManyArtistInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| page | PageCreateNestedOneWithoutArtworksInput | No |
| story | StoryCreateNestedOneWithoutPageArtworksInput | No |
| photo | PhotoCreateNestedOneWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| pageId | String | No |
| storyId | String | No |
| photoId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkWhereUniqueInput | No |
| create | PageArtworkCreateWithoutArtistInput | PageArtworkUncheckedCreateWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PageArtworkCreateManyArtistInput | PageArtworkCreateManyArtistInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| String | No | |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| author | AuthorCreateNestedOneWithoutUserInput | No |
| editions | EditionCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| String | No | |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| author | AuthorUncheckedCreateNestedOneWithoutUserInput | No |
| editions | EditionUncheckedCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutArtistInput | UserUncheckedCreateWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryWhereUniqueInput | No |
| update | StoryUpdateWithoutArtistInput | StoryUncheckedUpdateWithoutArtistInput | No |
| create | StoryCreateWithoutArtistInput | StoryUncheckedCreateWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryWhereUniqueInput | No |
| data | StoryUpdateWithoutArtistInput | StoryUncheckedUpdateWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryScalarWhereInput | No |
| data | StoryUpdateManyMutationInput | StoryUncheckedUpdateManyWithoutStoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkWhereUniqueInput | No |
| update | PageArtworkUpdateWithoutArtistInput | PageArtworkUncheckedUpdateWithoutArtistInput | No |
| create | PageArtworkCreateWithoutArtistInput | PageArtworkUncheckedCreateWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkWhereUniqueInput | No |
| data | PageArtworkUpdateWithoutArtistInput | PageArtworkUncheckedUpdateWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkScalarWhereInput | No |
| data | PageArtworkUpdateManyMutationInput | PageArtworkUncheckedUpdateManyWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PageArtworkScalarWhereInput | PageArtworkScalarWhereInput[] | No |
| OR | PageArtworkScalarWhereInput[] | No |
| NOT | PageArtworkScalarWhereInput | PageArtworkScalarWhereInput[] | No |
| status | EnumPageStatusFilter | PageStatus | No |
| pageId | StringFilter | String | No |
| storyId | StringFilter | String | No |
| artistId | StringFilter | String | No |
| photoId | StringFilter | String | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutArtistInput | UserUncheckedUpdateWithoutArtistInput | No |
| create | UserCreateWithoutArtistInput | UserUncheckedCreateWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| author | AuthorUpdateOneWithoutUserNestedInput | No |
| editions | EditionUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| author | AuthorUncheckedUpdateOneWithoutUserNestedInput | No |
| editions | EditionUncheckedUpdateManyWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| page | PageCreateNestedOneWithoutTextsInput | No |
| story | StoryCreateNestedOneWithoutPageTextsInput | No |
| author | AuthorCreateNestedOneWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| pageId | String | No |
| storyId | String | No |
| authorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextWhereUniqueInput | No |
| create | PageTextCreateWithoutTranslatorInput | PageTextUncheckedCreateWithoutTranslatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PageTextCreateManyTranslatorInput | PageTextCreateManyTranslatorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextWhereUniqueInput | No |
| update | PageTextUpdateWithoutTranslatorInput | PageTextUncheckedUpdateWithoutTranslatorInput | No |
| create | PageTextCreateWithoutTranslatorInput | PageTextUncheckedCreateWithoutTranslatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextWhereUniqueInput | No |
| data | PageTextUpdateWithoutTranslatorInput | PageTextUncheckedUpdateWithoutTranslatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextScalarWhereInput | No |
| data | PageTextUpdateManyMutationInput | PageTextUncheckedUpdateManyWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| instance_prompt | String | No |
| class_prompt | String | No |
| instance_data | String | No |
| class_data | String | No |
| num_class_images | Int | No |
| save_sample_prompt | String | Null | Yes |
| save_sample_negative_prompt | String | Null | Yes |
| n_save_sample | Int | No |
| save_guidance_scale | Float | No |
| save_infer_steps | Int | No |
| pad_tokens | Boolean | No |
| with_prior_preservation | Boolean | No |
| prior_loss_weight | Float | No |
| seed | Int | No |
| resolution | Int | No |
| center_crop | Boolean | No |
| train_text_encoder | Boolean | No |
| train_batch_size | Int | No |
| sample_batch_size | Int | No |
| num_train_epochs | Int | No |
| max_train_steps | Int | No |
| gradient_accumulation_steps | Int | No |
| gradient_checkpointing | Boolean | No |
| learning_rate | Float | No |
| scale_lr | Boolean | No |
| lr_scheduler | LRScheduler | No |
| lr_warmup_steps | Int | No |
| use_8bit_adam | Boolean | No |
| adam_beta1 | Float | No |
| adam_beta2 | Float | No |
| adam_weight_decay | Float | No |
| max_grad_norm | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| instance_prompt | String | No |
| class_prompt | String | No |
| instance_data | String | No |
| class_data | String | No |
| num_class_images | Int | No |
| save_sample_prompt | String | Null | Yes |
| save_sample_negative_prompt | String | Null | Yes |
| n_save_sample | Int | No |
| save_guidance_scale | Float | No |
| save_infer_steps | Int | No |
| pad_tokens | Boolean | No |
| with_prior_preservation | Boolean | No |
| prior_loss_weight | Float | No |
| seed | Int | No |
| resolution | Int | No |
| center_crop | Boolean | No |
| train_text_encoder | Boolean | No |
| train_batch_size | Int | No |
| sample_batch_size | Int | No |
| num_train_epochs | Int | No |
| max_train_steps | Int | No |
| gradient_accumulation_steps | Int | No |
| gradient_checkpointing | Boolean | No |
| learning_rate | Float | No |
| scale_lr | Boolean | No |
| lr_scheduler | LRScheduler | No |
| lr_warmup_steps | Int | No |
| use_8bit_adam | Boolean | No |
| adam_beta1 | Float | No |
| adam_beta2 | Float | No |
| adam_weight_decay | Float | No |
| max_grad_norm | Float | No |
| Name | Type | Nullable |
|---|---|---|
| where | DreamBoothTrainingWhereUniqueInput | No |
| create | DreamBoothTrainingCreateWithoutConceptInput | DreamBoothTrainingUncheckedCreateWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| tags | PhotoCreatetagsInput | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| file | CloudFileCreateNestedOneWithoutPhotoInput | No |
| pageArtworks | PageArtworkCreateNestedManyWithoutPhotoInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| tags | PhotoCreatetagsInput | String | No |
| fileId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| pageArtworks | PageArtworkUncheckedCreateNestedManyWithoutPhotoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PhotoWhereUniqueInput | No |
| create | PhotoCreateWithoutConceptsInput | PhotoUncheckedCreateWithoutConceptsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PhotoWhereUniqueInput | No |
| update | PhotoUpdateWithoutConceptsInput | PhotoUncheckedUpdateWithoutConceptsInput | No |
| create | PhotoCreateWithoutConceptsInput | PhotoUncheckedCreateWithoutConceptsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PhotoWhereUniqueInput | No |
| data | PhotoUpdateWithoutConceptsInput | PhotoUncheckedUpdateWithoutConceptsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PhotoScalarWhereInput | No |
| data | PhotoUpdateManyMutationInput | PhotoUncheckedUpdateManyWithoutPhotosInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PhotoScalarWhereInput | PhotoScalarWhereInput[] | No |
| OR | PhotoScalarWhereInput[] | No |
| NOT | PhotoScalarWhereInput | PhotoScalarWhereInput[] | No |
| height | IntFilter | Int | No |
| width | IntFilter | Int | No |
| tags | StringNullableListFilter | No |
| fileId | StringFilter | String | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| zenstack_guard | BoolFilter | Boolean | No |
| zenstack_transaction | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| type | ConceptType | No |
| status | ConceptStatus | No |
| description | String | Null | Yes |
| prompt | String | No |
| identifier | String | No |
| classNoun | String | No |
| negativePrompt | String | No |
| instancePrompt | String | No |
| classPrompt | String | No |
| positivePrompts | ConceptCreatepositivePromptsInput | String | No |
| negativePrompts | ConceptCreatenegativePromptsInput | String | No |
| dreamboothModelURI | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| photos | PhotoCreateNestedManyWithoutConceptsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| type | ConceptType | No |
| status | ConceptStatus | No |
| description | String | Null | Yes |
| prompt | String | No |
| identifier | String | No |
| classNoun | String | No |
| negativePrompt | String | No |
| instancePrompt | String | No |
| classPrompt | String | No |
| positivePrompts | ConceptCreatepositivePromptsInput | String | No |
| negativePrompts | ConceptCreatenegativePromptsInput | String | No |
| dreamboothModelURI | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| photos | PhotoUncheckedCreateNestedManyWithoutConceptsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutDreamboothTrainingInput | ConceptUncheckedCreateWithoutDreamboothTrainingInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ConceptCreateManyDreamboothTrainingInput | ConceptCreateManyDreamboothTrainingInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| update | ConceptUpdateWithoutDreamboothTrainingInput | ConceptUncheckedUpdateWithoutDreamboothTrainingInput | No |
| create | ConceptCreateWithoutDreamboothTrainingInput | ConceptUncheckedCreateWithoutDreamboothTrainingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| data | ConceptUpdateWithoutDreamboothTrainingInput | ConceptUncheckedUpdateWithoutDreamboothTrainingInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptScalarWhereInput | No |
| data | ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConceptScalarWhereInput | ConceptScalarWhereInput[] | No |
| OR | ConceptScalarWhereInput[] | No |
| NOT | ConceptScalarWhereInput | ConceptScalarWhereInput[] | No |
| name | StringFilter | String | No |
| type | EnumConceptTypeFilter | ConceptType | No |
| status | EnumConceptStatusFilter | ConceptStatus | No |
| description | StringNullableFilter | String | Null | Yes |
| prompt | StringFilter | String | No |
| identifier | StringFilter | String | No |
| classNoun | StringFilter | String | No |
| negativePrompt | StringFilter | String | No |
| instancePrompt | StringFilter | String | No |
| classPrompt | StringFilter | String | No |
| positivePrompts | StringNullableListFilter | No |
| negativePrompts | StringNullableListFilter | No |
| dreamboothTrainingId | StringNullableFilter | String | Null | Yes |
| dreamboothModelURI | StringNullableFilter | String | Null | Yes |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| zenstack_guard | BoolFilter | Boolean | No |
| zenstack_transaction | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| String | No | |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| artist | ArtistCreateNestedOneWithoutUserInput | No |
| author | AuthorCreateNestedOneWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| String | No | |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| artist | ArtistUncheckedCreateNestedOneWithoutUserInput | No |
| author | AuthorUncheckedCreateNestedOneWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutEditionsInput | UserUncheckedCreateWithoutEditionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| pages | Int | No |
| tags | PDFCreatetagsInput | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| file | CloudFileCreateNestedOneWithoutPdfInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| pages | Int | No |
| tags | PDFCreatetagsInput | String | No |
| fileId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PDFWhereUniqueInput | No |
| create | PDFCreateWithoutEditionInput | PDFUncheckedCreateWithoutEditionInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutEditionsInput | UserUncheckedUpdateWithoutEditionsInput | No |
| create | UserCreateWithoutEditionsInput | UserUncheckedCreateWithoutEditionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| artist | ArtistUpdateOneWithoutUserNestedInput | No |
| author | AuthorUpdateOneWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| artist | ArtistUncheckedUpdateOneWithoutUserNestedInput | No |
| author | AuthorUncheckedUpdateOneWithoutUserNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PDFUpdateWithoutEditionInput | PDFUncheckedUpdateWithoutEditionInput | No |
| create | PDFCreateWithoutEditionInput | PDFUncheckedCreateWithoutEditionInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| pages | Int | IntFieldUpdateOperationsInput | No |
| tags | PDFUpdatetagsInput | String | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| file | CloudFileUpdateOneRequiredWithoutPdfNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| pages | Int | IntFieldUpdateOperationsInput | No |
| tags | PDFUpdatetagsInput | String | No |
| fileId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| tags | PhotoCreatetagsInput | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| pageArtworks | PageArtworkCreateNestedManyWithoutPhotoInput | No |
| concepts | ConceptCreateNestedManyWithoutPhotosInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| tags | PhotoCreatetagsInput | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| pageArtworks | PageArtworkUncheckedCreateNestedManyWithoutPhotoInput | No |
| concepts | ConceptUncheckedCreateNestedManyWithoutPhotosInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PhotoWhereUniqueInput | No |
| create | PhotoCreateWithoutFileInput | PhotoUncheckedCreateWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| pages | Int | No |
| tags | PDFCreatetagsInput | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| edition | EditionCreateNestedOneWithoutPdfInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| pages | Int | No |
| tags | PDFCreatetagsInput | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| edition | EditionUncheckedCreateNestedOneWithoutPdfInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PDFWhereUniqueInput | No |
| create | PDFCreateWithoutFileInput | PDFUncheckedCreateWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PhotoUpdateWithoutFileInput | PhotoUncheckedUpdateWithoutFileInput | No |
| create | PhotoCreateWithoutFileInput | PhotoUncheckedCreateWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| tags | PhotoUpdatetagsInput | String | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| pageArtworks | PageArtworkUpdateManyWithoutPhotoNestedInput | No |
| concepts | ConceptUpdateManyWithoutPhotosNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| tags | PhotoUpdatetagsInput | String | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| pageArtworks | PageArtworkUncheckedUpdateManyWithoutPhotoNestedInput | No |
| concepts | ConceptUncheckedUpdateManyWithoutPhotosNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PDFUpdateWithoutFileInput | PDFUncheckedUpdateWithoutFileInput | No |
| create | PDFCreateWithoutFileInput | PDFUncheckedCreateWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| pages | Int | IntFieldUpdateOperationsInput | No |
| tags | PDFUpdatetagsInput | String | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| edition | EditionUpdateOneWithoutPdfNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| pages | Int | IntFieldUpdateOperationsInput | No |
| tags | PDFUpdatetagsInput | String | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| edition | EditionUncheckedUpdateOneWithoutPdfNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| filename | String | No |
| stem | String | No |
| extension | String | No |
| size | Int | No |
| mime | String | No |
| resourceType | FileResourceType | No |
| metadata | NullableJsonNullValueInput | Json | No |
| key | String | No |
| bucket | String | No |
| region | CloudFileRegion | No |
| publicUrl | String | Null | Yes |
| privacy | FilePrivacy | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| PDFCreateNestedOneWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| filename | String | No |
| stem | String | No |
| extension | String | No |
| size | Int | No |
| mime | String | No |
| resourceType | FileResourceType | No |
| metadata | NullableJsonNullValueInput | Json | No |
| key | String | No |
| bucket | String | No |
| region | CloudFileRegion | No |
| publicUrl | String | Null | Yes |
| privacy | FilePrivacy | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| PDFUncheckedCreateNestedOneWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CloudFileWhereUniqueInput | No |
| create | CloudFileCreateWithoutPhotoInput | CloudFileUncheckedCreateWithoutPhotoInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| page | PageCreateNestedOneWithoutArtworksInput | No |
| story | StoryCreateNestedOneWithoutPageArtworksInput | No |
| artist | ArtistCreateNestedOneWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| pageId | String | No |
| storyId | String | No |
| artistId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkWhereUniqueInput | No |
| create | PageArtworkCreateWithoutPhotoInput | PageArtworkUncheckedCreateWithoutPhotoInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PageArtworkCreateManyPhotoInput | PageArtworkCreateManyPhotoInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| type | ConceptType | No |
| status | ConceptStatus | No |
| description | String | Null | Yes |
| prompt | String | No |
| identifier | String | No |
| classNoun | String | No |
| negativePrompt | String | No |
| instancePrompt | String | No |
| classPrompt | String | No |
| positivePrompts | ConceptCreatepositivePromptsInput | String | No |
| negativePrompts | ConceptCreatenegativePromptsInput | String | No |
| dreamboothModelURI | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| dreamboothTraining | DreamBoothTrainingCreateNestedOneWithoutConceptInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| type | ConceptType | No |
| status | ConceptStatus | No |
| description | String | Null | Yes |
| prompt | String | No |
| identifier | String | No |
| classNoun | String | No |
| negativePrompt | String | No |
| instancePrompt | String | No |
| classPrompt | String | No |
| positivePrompts | ConceptCreatepositivePromptsInput | String | No |
| negativePrompts | ConceptCreatenegativePromptsInput | String | No |
| dreamboothTrainingId | String | Null | Yes |
| dreamboothModelURI | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| create | ConceptCreateWithoutPhotosInput | ConceptUncheckedCreateWithoutPhotosInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CloudFileUpdateWithoutPhotoInput | CloudFileUncheckedUpdateWithoutPhotoInput | No |
| create | CloudFileCreateWithoutPhotoInput | CloudFileUncheckedCreateWithoutPhotoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkWhereUniqueInput | No |
| update | PageArtworkUpdateWithoutPhotoInput | PageArtworkUncheckedUpdateWithoutPhotoInput | No |
| create | PageArtworkCreateWithoutPhotoInput | PageArtworkUncheckedCreateWithoutPhotoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkWhereUniqueInput | No |
| data | PageArtworkUpdateWithoutPhotoInput | PageArtworkUncheckedUpdateWithoutPhotoInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkScalarWhereInput | No |
| data | PageArtworkUpdateManyMutationInput | PageArtworkUncheckedUpdateManyWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| update | ConceptUpdateWithoutPhotosInput | ConceptUncheckedUpdateWithoutPhotosInput | No |
| create | ConceptCreateWithoutPhotosInput | ConceptUncheckedCreateWithoutPhotosInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptWhereUniqueInput | No |
| data | ConceptUpdateWithoutPhotosInput | ConceptUncheckedUpdateWithoutPhotosInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConceptScalarWhereInput | No |
| data | ConceptUpdateManyMutationInput | ConceptUncheckedUpdateManyWithoutConceptsInput | No |
| Name | Type | Nullable |
|---|---|---|
| filename | String | No |
| stem | String | No |
| extension | String | No |
| size | Int | No |
| mime | String | No |
| resourceType | FileResourceType | No |
| metadata | NullableJsonNullValueInput | Json | No |
| key | String | No |
| bucket | String | No |
| region | CloudFileRegion | No |
| publicUrl | String | Null | Yes |
| privacy | FilePrivacy | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| photo | PhotoCreateNestedOneWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| filename | String | No |
| stem | String | No |
| extension | String | No |
| size | Int | No |
| mime | String | No |
| resourceType | FileResourceType | No |
| metadata | NullableJsonNullValueInput | Json | No |
| key | String | No |
| bucket | String | No |
| region | CloudFileRegion | No |
| publicUrl | String | Null | Yes |
| privacy | FilePrivacy | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| photo | PhotoUncheckedCreateNestedOneWithoutFileInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CloudFileWhereUniqueInput | No |
| create | CloudFileCreateWithoutPdfInput | CloudFileUncheckedCreateWithoutPdfInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| user | UserCreateNestedOneWithoutEditionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | EditionWhereUniqueInput | No |
| create | EditionCreateWithoutPdfInput | EditionUncheckedCreateWithoutPdfInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CloudFileUpdateWithoutPdfInput | CloudFileUncheckedUpdateWithoutPdfInput | No |
| create | CloudFileCreateWithoutPdfInput | CloudFileUncheckedCreateWithoutPdfInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | EditionUpdateWithoutPdfInput | EditionUncheckedUpdateWithoutPdfInput | No |
| create | EditionCreateWithoutPdfInput | EditionUncheckedCreateWithoutPdfInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneRequiredWithoutEditionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| pageArtworks | PageArtworkCreateNestedManyWithoutArtistInput | No |
| user | UserCreateNestedOneWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| pageArtworks | PageArtworkUncheckedCreateNestedManyWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ArtistWhereUniqueInput | No |
| create | ArtistCreateWithoutStoriesInput | ArtistUncheckedCreateWithoutStoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| pageTexts | PageTextCreateNestedManyWithoutAuthorInput | No |
| user | UserCreateNestedOneWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| pageTexts | PageTextUncheckedCreateNestedManyWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AuthorWhereUniqueInput | No |
| create | AuthorCreateWithoutStoriesInput | AuthorUncheckedCreateWithoutStoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| type | PageType | No |
| pageNumber | Int | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| artworks | PageArtworkCreateNestedManyWithoutPageInput | No |
| texts | PageTextCreateNestedManyWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| type | PageType | No |
| pageNumber | Int | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| artworks | PageArtworkUncheckedCreateNestedManyWithoutPageInput | No |
| texts | PageTextUncheckedCreateNestedManyWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageWhereUniqueInput | No |
| create | PageCreateWithoutStoryInput | PageUncheckedCreateWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PageCreateManyStoryInput | PageCreateManyStoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| page | PageCreateNestedOneWithoutArtworksInput | No |
| artist | ArtistCreateNestedOneWithoutPageArtworksInput | No |
| photo | PhotoCreateNestedOneWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| pageId | String | No |
| artistId | String | No |
| photoId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkWhereUniqueInput | No |
| create | PageArtworkCreateWithoutStoryInput | PageArtworkUncheckedCreateWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PageArtworkCreateManyStoryInput | PageArtworkCreateManyStoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| page | PageCreateNestedOneWithoutTextsInput | No |
| author | AuthorCreateNestedOneWithoutPageTextsInput | No |
| translator | TranslatorCreateNestedOneWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| pageId | String | No |
| authorId | String | Null | Yes |
| translatorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextWhereUniqueInput | No |
| create | PageTextCreateWithoutStoryInput | PageTextUncheckedCreateWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PageTextCreateManyStoryInput | PageTextCreateManyStoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | ArtistUpdateWithoutStoriesInput | ArtistUncheckedUpdateWithoutStoriesInput | No |
| create | ArtistCreateWithoutStoriesInput | ArtistUncheckedCreateWithoutStoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| pageArtworks | PageArtworkUpdateManyWithoutArtistNestedInput | No |
| user | UserUpdateOneRequiredWithoutArtistNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| pageArtworks | PageArtworkUncheckedUpdateManyWithoutArtistNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | AuthorUpdateWithoutStoriesInput | AuthorUncheckedUpdateWithoutStoriesInput | No |
| create | AuthorCreateWithoutStoriesInput | AuthorUncheckedCreateWithoutStoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| pageTexts | PageTextUpdateManyWithoutAuthorNestedInput | No |
| user | UserUpdateOneRequiredWithoutAuthorNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| pageTexts | PageTextUncheckedUpdateManyWithoutAuthorNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageWhereUniqueInput | No |
| update | PageUpdateWithoutStoryInput | PageUncheckedUpdateWithoutStoryInput | No |
| create | PageCreateWithoutStoryInput | PageUncheckedCreateWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageWhereUniqueInput | No |
| data | PageUpdateWithoutStoryInput | PageUncheckedUpdateWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageScalarWhereInput | No |
| data | PageUpdateManyMutationInput | PageUncheckedUpdateManyWithoutPagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | PageScalarWhereInput | PageScalarWhereInput[] | No |
| OR | PageScalarWhereInput[] | No |
| NOT | PageScalarWhereInput | PageScalarWhereInput[] | No |
| status | EnumPageStatusFilter | PageStatus | No |
| type | EnumPageTypeFilter | PageType | No |
| pageNumber | IntFilter | Int | No |
| storyId | StringFilter | String | No |
| id | StringFilter | String | No |
| createdAt | DateTimeFilter | DateTime | No |
| updatedAt | DateTimeFilter | DateTime | No |
| deletedAt | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkWhereUniqueInput | No |
| update | PageArtworkUpdateWithoutStoryInput | PageArtworkUncheckedUpdateWithoutStoryInput | No |
| create | PageArtworkCreateWithoutStoryInput | PageArtworkUncheckedCreateWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkWhereUniqueInput | No |
| data | PageArtworkUpdateWithoutStoryInput | PageArtworkUncheckedUpdateWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkScalarWhereInput | No |
| data | PageArtworkUpdateManyMutationInput | PageArtworkUncheckedUpdateManyWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextWhereUniqueInput | No |
| update | PageTextUpdateWithoutStoryInput | PageTextUncheckedUpdateWithoutStoryInput | No |
| create | PageTextCreateWithoutStoryInput | PageTextUncheckedCreateWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextWhereUniqueInput | No |
| data | PageTextUpdateWithoutStoryInput | PageTextUncheckedUpdateWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextScalarWhereInput | No |
| data | PageTextUpdateManyMutationInput | PageTextUncheckedUpdateManyWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| type | PageType | No |
| pageNumber | Int | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| story | StoryCreateNestedOneWithoutPagesInput | No |
| texts | PageTextCreateNestedManyWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| type | PageType | No |
| pageNumber | Int | No |
| storyId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| texts | PageTextUncheckedCreateNestedManyWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageWhereUniqueInput | No |
| create | PageCreateWithoutArtworksInput | PageUncheckedCreateWithoutArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| artist | ArtistCreateNestedOneWithoutStoriesInput | No |
| author | AuthorCreateNestedOneWithoutStoriesInput | No |
| pages | PageCreateNestedManyWithoutStoryInput | No |
| pageTexts | PageTextCreateNestedManyWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | Null | Yes |
| authorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| pages | PageUncheckedCreateNestedManyWithoutStoryInput | No |
| pageTexts | PageTextUncheckedCreateNestedManyWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryWhereUniqueInput | No |
| create | StoryCreateWithoutPageArtworksInput | StoryUncheckedCreateWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| stories | StoryCreateNestedManyWithoutArtistInput | No |
| user | UserCreateNestedOneWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| stories | StoryUncheckedCreateNestedManyWithoutArtistInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ArtistWhereUniqueInput | No |
| create | ArtistCreateWithoutPageArtworksInput | ArtistUncheckedCreateWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| tags | PhotoCreatetagsInput | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| file | CloudFileCreateNestedOneWithoutPhotoInput | No |
| concepts | ConceptCreateNestedManyWithoutPhotosInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| tags | PhotoCreatetagsInput | String | No |
| fileId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| concepts | ConceptUncheckedCreateNestedManyWithoutPhotosInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PhotoWhereUniqueInput | No |
| create | PhotoCreateWithoutPageArtworksInput | PhotoUncheckedCreateWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PageUpdateWithoutArtworksInput | PageUncheckedUpdateWithoutArtworksInput | No |
| create | PageCreateWithoutArtworksInput | PageUncheckedCreateWithoutArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| type | PageType | EnumPageTypeFieldUpdateOperationsInput | No |
| pageNumber | Int | IntFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| story | StoryUpdateOneRequiredWithoutPagesNestedInput | No |
| texts | PageTextUpdateManyWithoutPageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| type | PageType | EnumPageTypeFieldUpdateOperationsInput | No |
| pageNumber | Int | IntFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| texts | PageTextUncheckedUpdateManyWithoutPageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | StoryUpdateWithoutPageArtworksInput | StoryUncheckedUpdateWithoutPageArtworksInput | No |
| create | StoryCreateWithoutPageArtworksInput | StoryUncheckedCreateWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| artist | ArtistUpdateOneWithoutStoriesNestedInput | No |
| author | AuthorUpdateOneWithoutStoriesNestedInput | No |
| pages | PageUpdateManyWithoutStoryNestedInput | No |
| pageTexts | PageTextUpdateManyWithoutStoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| pages | PageUncheckedUpdateManyWithoutStoryNestedInput | No |
| pageTexts | PageTextUncheckedUpdateManyWithoutStoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ArtistUpdateWithoutPageArtworksInput | ArtistUncheckedUpdateWithoutPageArtworksInput | No |
| create | ArtistCreateWithoutPageArtworksInput | ArtistUncheckedCreateWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| stories | StoryUpdateManyWithoutArtistNestedInput | No |
| user | UserUpdateOneRequiredWithoutArtistNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| stories | StoryUncheckedUpdateManyWithoutArtistNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PhotoUpdateWithoutPageArtworksInput | PhotoUncheckedUpdateWithoutPageArtworksInput | No |
| create | PhotoCreateWithoutPageArtworksInput | PhotoUncheckedCreateWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| tags | PhotoUpdatetagsInput | String | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| file | CloudFileUpdateOneRequiredWithoutPhotoNestedInput | No |
| concepts | ConceptUpdateManyWithoutPhotosNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| tags | PhotoUpdatetagsInput | String | No |
| fileId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| concepts | ConceptUncheckedUpdateManyWithoutPhotosNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| type | PageType | No |
| pageNumber | Int | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| story | StoryCreateNestedOneWithoutPagesInput | No |
| artworks | PageArtworkCreateNestedManyWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| type | PageType | No |
| pageNumber | Int | No |
| storyId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| artworks | PageArtworkUncheckedCreateNestedManyWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageWhereUniqueInput | No |
| create | PageCreateWithoutTextsInput | PageUncheckedCreateWithoutTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| artist | ArtistCreateNestedOneWithoutStoriesInput | No |
| author | AuthorCreateNestedOneWithoutStoriesInput | No |
| pages | PageCreateNestedManyWithoutStoryInput | No |
| pageArtworks | PageArtworkCreateNestedManyWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | Null | Yes |
| authorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| pages | PageUncheckedCreateNestedManyWithoutStoryInput | No |
| pageArtworks | PageArtworkUncheckedCreateNestedManyWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryWhereUniqueInput | No |
| create | StoryCreateWithoutPageTextsInput | StoryUncheckedCreateWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| stories | StoryCreateNestedManyWithoutAuthorInput | No |
| user | UserCreateNestedOneWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| stories | StoryUncheckedCreateNestedManyWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AuthorWhereUniqueInput | No |
| create | AuthorCreateWithoutPageTextsInput | AuthorUncheckedCreateWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TranslatorWhereUniqueInput | No |
| create | TranslatorCreateWithoutPageTextsInput | TranslatorUncheckedCreateWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | PageUpdateWithoutTextsInput | PageUncheckedUpdateWithoutTextsInput | No |
| create | PageCreateWithoutTextsInput | PageUncheckedCreateWithoutTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| type | PageType | EnumPageTypeFieldUpdateOperationsInput | No |
| pageNumber | Int | IntFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| story | StoryUpdateOneRequiredWithoutPagesNestedInput | No |
| artworks | PageArtworkUpdateManyWithoutPageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| type | PageType | EnumPageTypeFieldUpdateOperationsInput | No |
| pageNumber | Int | IntFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| artworks | PageArtworkUncheckedUpdateManyWithoutPageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | StoryUpdateWithoutPageTextsInput | StoryUncheckedUpdateWithoutPageTextsInput | No |
| create | StoryCreateWithoutPageTextsInput | StoryUncheckedCreateWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| artist | ArtistUpdateOneWithoutStoriesNestedInput | No |
| author | AuthorUpdateOneWithoutStoriesNestedInput | No |
| pages | PageUpdateManyWithoutStoryNestedInput | No |
| pageArtworks | PageArtworkUpdateManyWithoutStoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| pages | PageUncheckedUpdateManyWithoutStoryNestedInput | No |
| pageArtworks | PageArtworkUncheckedUpdateManyWithoutStoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | AuthorUpdateWithoutPageTextsInput | AuthorUncheckedUpdateWithoutPageTextsInput | No |
| create | AuthorCreateWithoutPageTextsInput | AuthorUncheckedCreateWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| stories | StoryUpdateManyWithoutAuthorNestedInput | No |
| user | UserUpdateOneRequiredWithoutAuthorNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| stories | StoryUncheckedUpdateManyWithoutAuthorNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TranslatorUpdateWithoutPageTextsInput | TranslatorUncheckedUpdateWithoutPageTextsInput | No |
| create | TranslatorCreateWithoutPageTextsInput | TranslatorUncheckedCreateWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| artist | ArtistCreateNestedOneWithoutStoriesInput | No |
| author | AuthorCreateNestedOneWithoutStoriesInput | No |
| pageArtworks | PageArtworkCreateNestedManyWithoutStoryInput | No |
| pageTexts | PageTextCreateNestedManyWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | Null | Yes |
| authorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| pageArtworks | PageArtworkUncheckedCreateNestedManyWithoutStoryInput | No |
| pageTexts | PageTextUncheckedCreateNestedManyWithoutStoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | StoryWhereUniqueInput | No |
| create | StoryCreateWithoutPagesInput | StoryUncheckedCreateWithoutPagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| story | StoryCreateNestedOneWithoutPageArtworksInput | No |
| artist | ArtistCreateNestedOneWithoutPageArtworksInput | No |
| photo | PhotoCreateNestedOneWithoutPageArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| storyId | String | No |
| artistId | String | No |
| photoId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkWhereUniqueInput | No |
| create | PageArtworkCreateWithoutPageInput | PageArtworkUncheckedCreateWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PageArtworkCreateManyPageInput | PageArtworkCreateManyPageInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| story | StoryCreateNestedOneWithoutPageTextsInput | No |
| author | AuthorCreateNestedOneWithoutPageTextsInput | No |
| translator | TranslatorCreateNestedOneWithoutPageTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| storyId | String | No |
| authorId | String | Null | Yes |
| translatorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextWhereUniqueInput | No |
| create | PageTextCreateWithoutPageInput | PageTextUncheckedCreateWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | PageTextCreateManyPageInput | PageTextCreateManyPageInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | StoryUpdateWithoutPagesInput | StoryUncheckedUpdateWithoutPagesInput | No |
| create | StoryCreateWithoutPagesInput | StoryUncheckedCreateWithoutPagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| artist | ArtistUpdateOneWithoutStoriesNestedInput | No |
| author | AuthorUpdateOneWithoutStoriesNestedInput | No |
| pageArtworks | PageArtworkUpdateManyWithoutStoryNestedInput | No |
| pageTexts | PageTextUpdateManyWithoutStoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| authorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| pageArtworks | PageArtworkUncheckedUpdateManyWithoutStoryNestedInput | No |
| pageTexts | PageTextUncheckedUpdateManyWithoutStoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkWhereUniqueInput | No |
| update | PageArtworkUpdateWithoutPageInput | PageArtworkUncheckedUpdateWithoutPageInput | No |
| create | PageArtworkCreateWithoutPageInput | PageArtworkUncheckedCreateWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkWhereUniqueInput | No |
| data | PageArtworkUpdateWithoutPageInput | PageArtworkUncheckedUpdateWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageArtworkScalarWhereInput | No |
| data | PageArtworkUpdateManyMutationInput | PageArtworkUncheckedUpdateManyWithoutArtworksInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextWhereUniqueInput | No |
| update | PageTextUpdateWithoutPageInput | PageTextUncheckedUpdateWithoutPageInput | No |
| create | PageTextCreateWithoutPageInput | PageTextUncheckedCreateWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextWhereUniqueInput | No |
| data | PageTextUpdateWithoutPageInput | PageTextUncheckedUpdateWithoutPageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | PageTextScalarWhereInput | No |
| data | PageTextUpdateManyMutationInput | PageTextUncheckedUpdateManyWithoutTextsInput | No |
| Name | Type | Nullable |
|---|---|---|
| pdfId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| PDFUpdateOneRequiredWithoutEditionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| pdfId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| pdfId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| pageId | String | No |
| storyId | String | No |
| translatorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| artist | ArtistUpdateOneWithoutStoriesNestedInput | No |
| pages | PageUpdateManyWithoutStoryNestedInput | No |
| pageArtworks | PageArtworkUpdateManyWithoutStoryNestedInput | No |
| pageTexts | PageTextUpdateManyWithoutStoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| pages | PageUncheckedUpdateManyWithoutStoryNestedInput | No |
| pageArtworks | PageArtworkUncheckedUpdateManyWithoutStoryNestedInput | No |
| pageTexts | PageTextUncheckedUpdateManyWithoutStoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| page | PageUpdateOneRequiredWithoutTextsNestedInput | No |
| story | StoryUpdateOneRequiredWithoutPageTextsNestedInput | No |
| translator | TranslatorUpdateOneWithoutPageTextsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| pageId | String | StringFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| translatorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| pageId | String | StringFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| translatorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| authorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| pageId | String | No |
| storyId | String | No |
| photoId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| author | AuthorUpdateOneWithoutStoriesNestedInput | No |
| pages | PageUpdateManyWithoutStoryNestedInput | No |
| pageArtworks | PageArtworkUpdateManyWithoutStoryNestedInput | No |
| pageTexts | PageTextUpdateManyWithoutStoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| authorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| pages | PageUncheckedUpdateManyWithoutStoryNestedInput | No |
| pageArtworks | PageArtworkUncheckedUpdateManyWithoutStoryNestedInput | No |
| pageTexts | PageTextUncheckedUpdateManyWithoutStoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| page | PageUpdateOneRequiredWithoutArtworksNestedInput | No |
| story | StoryUpdateOneRequiredWithoutPageArtworksNestedInput | No |
| photo | PhotoUpdateOneRequiredWithoutPageArtworksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| pageId | String | StringFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| photoId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| pageId | String | StringFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| photoId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| pageId | String | No |
| storyId | String | No |
| authorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| page | PageUpdateOneRequiredWithoutTextsNestedInput | No |
| story | StoryUpdateOneRequiredWithoutPageTextsNestedInput | No |
| author | AuthorUpdateOneWithoutPageTextsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| pageId | String | StringFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| authorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| tags | PhotoUpdatetagsInput | String | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| file | CloudFileUpdateOneRequiredWithoutPhotoNestedInput | No |
| pageArtworks | PageArtworkUpdateManyWithoutPhotoNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| tags | PhotoUpdatetagsInput | String | No |
| fileId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| pageArtworks | PageArtworkUncheckedUpdateManyWithoutPhotoNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | IntFieldUpdateOperationsInput | No |
| width | Int | IntFieldUpdateOperationsInput | No |
| tags | PhotoUpdatetagsInput | String | No |
| fileId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| zenstack_guard | Boolean | BoolFieldUpdateOperationsInput | No |
| zenstack_transaction | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| type | ConceptType | No |
| status | ConceptStatus | No |
| description | String | Null | Yes |
| prompt | String | No |
| identifier | String | No |
| classNoun | String | No |
| negativePrompt | String | No |
| instancePrompt | String | No |
| classPrompt | String | No |
| positivePrompts | ConceptCreatepositivePromptsInput | String | No |
| negativePrompts | ConceptCreatenegativePromptsInput | String | No |
| dreamboothModelURI | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| pageId | String | No |
| storyId | String | No |
| artistId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| page | PageUpdateOneRequiredWithoutArtworksNestedInput | No |
| story | StoryUpdateOneRequiredWithoutPageArtworksNestedInput | No |
| artist | ArtistUpdateOneRequiredWithoutPageArtworksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| pageId | String | StringFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| artistId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| type | PageType | No |
| pageNumber | Int | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| pageId | String | No |
| artistId | String | No |
| photoId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| pageId | String | No |
| authorId | String | Null | Yes |
| translatorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| type | PageType | EnumPageTypeFieldUpdateOperationsInput | No |
| pageNumber | Int | IntFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| artworks | PageArtworkUpdateManyWithoutPageNestedInput | No |
| texts | PageTextUpdateManyWithoutPageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| type | PageType | EnumPageTypeFieldUpdateOperationsInput | No |
| pageNumber | Int | IntFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| artworks | PageArtworkUncheckedUpdateManyWithoutPageNestedInput | No |
| texts | PageTextUncheckedUpdateManyWithoutPageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| type | PageType | EnumPageTypeFieldUpdateOperationsInput | No |
| pageNumber | Int | IntFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| page | PageUpdateOneRequiredWithoutArtworksNestedInput | No |
| artist | ArtistUpdateOneRequiredWithoutPageArtworksNestedInput | No |
| photo | PhotoUpdateOneRequiredWithoutPageArtworksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| pageId | String | StringFieldUpdateOperationsInput | No |
| artistId | String | StringFieldUpdateOperationsInput | No |
| photoId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| page | PageUpdateOneRequiredWithoutTextsNestedInput | No |
| author | AuthorUpdateOneWithoutPageTextsNestedInput | No |
| translator | TranslatorUpdateOneWithoutPageTextsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| pageId | String | StringFieldUpdateOperationsInput | No |
| authorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| translatorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| storyId | String | No |
| artistId | String | No |
| photoId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| storyId | String | No |
| authorId | String | Null | Yes |
| translatorId | String | Null | Yes |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| story | StoryUpdateOneRequiredWithoutPageArtworksNestedInput | No |
| artist | ArtistUpdateOneRequiredWithoutPageArtworksNestedInput | No |
| photo | PhotoUpdateOneRequiredWithoutPageArtworksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| artistId | String | StringFieldUpdateOperationsInput | No |
| photoId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| artistId | String | StringFieldUpdateOperationsInput | No |
| photoId | String | StringFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| story | StoryUpdateOneRequiredWithoutPageTextsNestedInput | No |
| author | AuthorUpdateOneWithoutPageTextsNestedInput | No |
| translator | TranslatorUpdateOneWithoutPageTextsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| authorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| translatorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | EnumPageStatusFieldUpdateOperationsInput | No |
| locale | Locale | EnumLocaleFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| type | PageTextType | EnumPageTextTypeFieldUpdateOperationsInput | No |
| storyId | String | StringFieldUpdateOperationsInput | No |
| authorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| translatorId | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id | String | StringFieldUpdateOperationsInput | No |
| createdAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updatedAt | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deletedAt | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | Yes |
| String | Yes | |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | Yes |
| zenstack_transaction | String | No |
| artist | Artist | No |
| author | Author | No |
| editions | Edition[] | No |
| _count | UserCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| stories | Story[] | No |
| pageTexts | PageText[] | No |
| user | User | Yes |
| _count | AuthorCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| stories | Story[] | No |
| pageArtworks | PageArtwork[] | No |
| user | User | Yes |
| _count | ArtistCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| pageTexts | PageText[] | No |
| _count | TranslatorCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | Yes |
| type | ConceptType | Yes |
| status | ConceptStatus | Yes |
| description | String | No |
| prompt | String | Yes |
| identifier | String | Yes |
| classNoun | String | Yes |
| negativePrompt | String | Yes |
| instancePrompt | String | Yes |
| classPrompt | String | Yes |
| positivePrompts | String | No |
| negativePrompts | String | No |
| dreamboothTrainingId | String | No |
| dreamboothModelURI | String | No |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | Yes |
| zenstack_transaction | String | No |
| dreamboothTraining | DreamBoothTraining | No |
| photos | Photo[] | No |
| _count | ConceptCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| input | Json | No |
| output | Json | No |
| status | String | No |
| created_at | DateTime | No |
| started_at | DateTime | No |
| completed_at | DateTime | No |
| version | String | No |
| metrics | Json | No |
| error | String | No |
| logs | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| instance_prompt | String | Yes |
| class_prompt | String | Yes |
| instance_data | String | Yes |
| class_data | String | Yes |
| num_class_images | Int | Yes |
| save_sample_prompt | String | No |
| save_sample_negative_prompt | String | No |
| n_save_sample | Int | Yes |
| save_guidance_scale | Float | Yes |
| save_infer_steps | Int | Yes |
| pad_tokens | Boolean | Yes |
| with_prior_preservation | Boolean | Yes |
| prior_loss_weight | Float | Yes |
| seed | Int | Yes |
| resolution | Int | Yes |
| center_crop | Boolean | Yes |
| train_text_encoder | Boolean | Yes |
| train_batch_size | Int | Yes |
| sample_batch_size | Int | Yes |
| num_train_epochs | Int | Yes |
| max_train_steps | Int | Yes |
| gradient_accumulation_steps | Int | Yes |
| gradient_checkpointing | Boolean | Yes |
| learning_rate | Float | Yes |
| scale_lr | Boolean | Yes |
| lr_scheduler | LRScheduler | Yes |
| lr_warmup_steps | Int | Yes |
| use_8bit_adam | Boolean | Yes |
| adam_beta1 | Float | Yes |
| adam_beta2 | Float | Yes |
| adam_weight_decay | Float | Yes |
| max_grad_norm | Float | Yes |
| Concept | Concept[] | No |
| _count | DreamBoothTrainingCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| pdfId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| user | User | Yes |
| Yes |
| Name | Type | Nullable |
|---|---|---|
| filename | String | Yes |
| stem | String | Yes |
| extension | String | Yes |
| size | Int | Yes |
| mime | String | Yes |
| resourceType | FileResourceType | Yes |
| metadata | Json | No |
| key | String | Yes |
| bucket | String | Yes |
| region | CloudFileRegion | Yes |
| publicUrl | String | No |
| privacy | FilePrivacy | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | Yes |
| zenstack_transaction | String | No |
| photo | Photo | No |
| No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | Yes |
| width | Int | Yes |
| tags | String | No |
| fileId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | Yes |
| zenstack_transaction | String | No |
| file | CloudFile | Yes |
| pageArtworks | PageArtwork[] | No |
| concepts | Concept[] | No |
| _count | PhotoCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | Int | Yes |
| width | Int | Yes |
| pages | Int | Yes |
| tags | String | No |
| fileId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | Yes |
| zenstack_transaction | String | No |
| file | CloudFile | Yes |
| edition | Edition | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | No |
| authorId | String | No |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| artist | Artist | No |
| author | Author | No |
| pages | Page[] | No |
| pageArtworks | PageArtwork[] | No |
| pageTexts | PageText[] | No |
| _count | StoryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | Yes |
| pageId | String | Yes |
| storyId | String | Yes |
| artistId | String | Yes |
| photoId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| page | Page | Yes |
| story | Story | Yes |
| artist | Artist | Yes |
| photo | Photo | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | Yes |
| locale | Locale | Yes |
| text | String | Yes |
| type | PageTextType | Yes |
| pageId | String | Yes |
| storyId | String | Yes |
| authorId | String | No |
| translatorId | String | No |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| page | Page | Yes |
| story | Story | Yes |
| author | Author | No |
| translator | Translator | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | Yes |
| type | PageType | Yes |
| pageNumber | Int | Yes |
| storyId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| story | Story | Yes |
| artworks | PageArtwork[] | No |
| texts | PageText[] | No |
| _count | PageCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | UserCountAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | Yes |
| String | Yes | |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | Yes |
| zenstack_transaction | String | No |
| _count | UserCountAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AuthorCountAggregateOutputType | No |
| _min | AuthorMinAggregateOutputType | No |
| _max | AuthorMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| _count | AuthorCountAggregateOutputType | No |
| _min | AuthorMinAggregateOutputType | No |
| _max | AuthorMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ArtistCountAggregateOutputType | No |
| _min | ArtistMinAggregateOutputType | No |
| _max | ArtistMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| _count | ArtistCountAggregateOutputType | No |
| _min | ArtistMinAggregateOutputType | No |
| _max | ArtistMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TranslatorCountAggregateOutputType | No |
| _min | TranslatorMinAggregateOutputType | No |
| _max | TranslatorMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| _count | TranslatorCountAggregateOutputType | No |
| _min | TranslatorMinAggregateOutputType | No |
| _max | TranslatorMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConceptCountAggregateOutputType | No |
| _min | ConceptMinAggregateOutputType | No |
| _max | ConceptMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | Yes |
| type | ConceptType | Yes |
| status | ConceptStatus | Yes |
| description | String | No |
| prompt | String | Yes |
| identifier | String | Yes |
| classNoun | String | Yes |
| negativePrompt | String | Yes |
| instancePrompt | String | Yes |
| classPrompt | String | Yes |
| positivePrompts | String | No |
| negativePrompts | String | No |
| dreamboothTrainingId | String | No |
| dreamboothModelURI | String | No |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | Yes |
| zenstack_transaction | String | No |
| _count | ConceptCountAggregateOutputType | No |
| _min | ConceptMinAggregateOutputType | No |
| _max | ConceptMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PredictionCountAggregateOutputType | No |
| _min | PredictionMinAggregateOutputType | No |
| _max | PredictionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| uuid | String | Yes |
| input | Json | No |
| output | Json | No |
| status | String | No |
| created_at | DateTime | No |
| started_at | DateTime | No |
| completed_at | DateTime | No |
| version | String | No |
| metrics | Json | No |
| error | String | No |
| logs | String | No |
| _count | PredictionCountAggregateOutputType | No |
| _min | PredictionMinAggregateOutputType | No |
| _max | PredictionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | DreamBoothTrainingCountAggregateOutputType | No |
| _avg | DreamBoothTrainingAvgAggregateOutputType | No |
| _sum | DreamBoothTrainingSumAggregateOutputType | No |
| _min | DreamBoothTrainingMinAggregateOutputType | No |
| _max | DreamBoothTrainingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| createdAt | DateTime | Yes |
| instance_prompt | String | Yes |
| class_prompt | String | Yes |
| instance_data | String | Yes |
| class_data | String | Yes |
| num_class_images | Int | Yes |
| save_sample_prompt | String | No |
| save_sample_negative_prompt | String | No |
| n_save_sample | Int | Yes |
| save_guidance_scale | Float | Yes |
| save_infer_steps | Int | Yes |
| pad_tokens | Boolean | Yes |
| with_prior_preservation | Boolean | Yes |
| prior_loss_weight | Float | Yes |
| seed | Int | Yes |
| resolution | Int | Yes |
| center_crop | Boolean | Yes |
| train_text_encoder | Boolean | Yes |
| train_batch_size | Int | Yes |
| sample_batch_size | Int | Yes |
| num_train_epochs | Int | Yes |
| max_train_steps | Int | Yes |
| gradient_accumulation_steps | Int | Yes |
| gradient_checkpointing | Boolean | Yes |
| learning_rate | Float | Yes |
| scale_lr | Boolean | Yes |
| lr_scheduler | LRScheduler | Yes |
| lr_warmup_steps | Int | Yes |
| use_8bit_adam | Boolean | Yes |
| adam_beta1 | Float | Yes |
| adam_beta2 | Float | Yes |
| adam_weight_decay | Float | Yes |
| max_grad_norm | Float | Yes |
| _count | DreamBoothTrainingCountAggregateOutputType | No |
| _avg | DreamBoothTrainingAvgAggregateOutputType | No |
| _sum | DreamBoothTrainingSumAggregateOutputType | No |
| _min | DreamBoothTrainingMinAggregateOutputType | No |
| _max | DreamBoothTrainingMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | EditionCountAggregateOutputType | No |
| _min | EditionMinAggregateOutputType | No |
| _max | EditionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| pdfId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| _count | EditionCountAggregateOutputType | No |
| _min | EditionMinAggregateOutputType | No |
| _max | EditionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CloudFileCountAggregateOutputType | No |
| _avg | CloudFileAvgAggregateOutputType | No |
| _sum | CloudFileSumAggregateOutputType | No |
| _min | CloudFileMinAggregateOutputType | No |
| _max | CloudFileMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| filename | String | Yes |
| stem | String | Yes |
| extension | String | Yes |
| size | Int | Yes |
| mime | String | Yes |
| resourceType | FileResourceType | Yes |
| metadata | Json | No |
| key | String | Yes |
| bucket | String | Yes |
| region | CloudFileRegion | Yes |
| publicUrl | String | No |
| privacy | FilePrivacy | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | Yes |
| zenstack_transaction | String | No |
| _count | CloudFileCountAggregateOutputType | No |
| _avg | CloudFileAvgAggregateOutputType | No |
| _sum | CloudFileSumAggregateOutputType | No |
| _min | CloudFileMinAggregateOutputType | No |
| _max | CloudFileMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PhotoCountAggregateOutputType | No |
| _avg | PhotoAvgAggregateOutputType | No |
| _sum | PhotoSumAggregateOutputType | No |
| _min | PhotoMinAggregateOutputType | No |
| _max | PhotoMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | Yes |
| width | Int | Yes |
| tags | String | No |
| fileId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | Yes |
| zenstack_transaction | String | No |
| _count | PhotoCountAggregateOutputType | No |
| _avg | PhotoAvgAggregateOutputType | No |
| _sum | PhotoSumAggregateOutputType | No |
| _min | PhotoMinAggregateOutputType | No |
| _max | PhotoMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PDFCountAggregateOutputType | No |
| _avg | PDFAvgAggregateOutputType | No |
| _sum | PDFSumAggregateOutputType | No |
| _min | PDFMinAggregateOutputType | No |
| _max | PDFMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | Yes |
| width | Int | Yes |
| pages | Int | Yes |
| tags | String | No |
| fileId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | Yes |
| zenstack_transaction | String | No |
| _count | PDFCountAggregateOutputType | No |
| _avg | PDFAvgAggregateOutputType | No |
| _sum | PDFSumAggregateOutputType | No |
| _min | PDFMinAggregateOutputType | No |
| _max | PDFMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | StoryCountAggregateOutputType | No |
| _min | StoryMinAggregateOutputType | No |
| _max | StoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | No |
| authorId | String | No |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| _count | StoryCountAggregateOutputType | No |
| _min | StoryMinAggregateOutputType | No |
| _max | StoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PageArtworkCountAggregateOutputType | No |
| _min | PageArtworkMinAggregateOutputType | No |
| _max | PageArtworkMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | Yes |
| pageId | String | Yes |
| storyId | String | Yes |
| artistId | String | Yes |
| photoId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| _count | PageArtworkCountAggregateOutputType | No |
| _min | PageArtworkMinAggregateOutputType | No |
| _max | PageArtworkMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PageTextCountAggregateOutputType | No |
| _min | PageTextMinAggregateOutputType | No |
| _max | PageTextMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | Yes |
| locale | Locale | Yes |
| text | String | Yes |
| type | PageTextType | Yes |
| pageId | String | Yes |
| storyId | String | Yes |
| authorId | String | No |
| translatorId | String | No |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| _count | PageTextCountAggregateOutputType | No |
| _min | PageTextMinAggregateOutputType | No |
| _max | PageTextMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | PageCountAggregateOutputType | No |
| _avg | PageAvgAggregateOutputType | No |
| _sum | PageSumAggregateOutputType | No |
| _min | PageMinAggregateOutputType | No |
| _max | PageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | Yes |
| type | PageType | Yes |
| pageNumber | Int | Yes |
| storyId | String | Yes |
| id | String | Yes |
| createdAt | DateTime | Yes |
| updatedAt | DateTime | Yes |
| deletedAt | DateTime | No |
| _count | PageCountAggregateOutputType | No |
| _avg | PageAvgAggregateOutputType | No |
| _sum | PageSumAggregateOutputType | No |
| _min | PageMinAggregateOutputType | No |
| _max | PageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| editions | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | Int | Yes |
| Int | Yes | |
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| deletedAt | Int | Yes |
| zenstack_guard | Int | Yes |
| zenstack_transaction | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| String | No | |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| String | No | |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | No |
| Name | Type | Nullable |
|---|---|---|
| stories | Int | Yes |
| pageTexts | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | Int | Yes |
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| deletedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| stories | Int | Yes |
| pageArtworks | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | Int | Yes |
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| deletedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| pageTexts | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| deletedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| photos | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | Int | Yes |
| type | Int | Yes |
| status | Int | Yes |
| description | Int | Yes |
| prompt | Int | Yes |
| identifier | Int | Yes |
| classNoun | Int | Yes |
| negativePrompt | Int | Yes |
| instancePrompt | Int | Yes |
| classPrompt | Int | Yes |
| positivePrompts | Int | Yes |
| negativePrompts | Int | Yes |
| dreamboothTrainingId | Int | Yes |
| dreamboothModelURI | Int | Yes |
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| deletedAt | Int | Yes |
| zenstack_guard | Int | Yes |
| zenstack_transaction | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| type | ConceptType | No |
| status | ConceptStatus | No |
| description | String | No |
| prompt | String | No |
| identifier | String | No |
| classNoun | String | No |
| negativePrompt | String | No |
| instancePrompt | String | No |
| classPrompt | String | No |
| dreamboothTrainingId | String | No |
| dreamboothModelURI | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| type | ConceptType | No |
| status | ConceptStatus | No |
| description | String | No |
| prompt | String | No |
| identifier | String | No |
| classNoun | String | No |
| negativePrompt | String | No |
| instancePrompt | String | No |
| classPrompt | String | No |
| dreamboothTrainingId | String | No |
| dreamboothModelURI | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| input | Int | Yes |
| output | Int | Yes |
| status | Int | Yes |
| created_at | Int | Yes |
| started_at | Int | Yes |
| completed_at | Int | Yes |
| version | Int | Yes |
| metrics | Int | Yes |
| error | Int | Yes |
| logs | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| status | String | No |
| created_at | DateTime | No |
| started_at | DateTime | No |
| completed_at | DateTime | No |
| version | String | No |
| error | String | No |
| logs | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| uuid | String | No |
| status | String | No |
| created_at | DateTime | No |
| started_at | DateTime | No |
| completed_at | DateTime | No |
| version | String | No |
| error | String | No |
| logs | String | No |
| Name | Type | Nullable |
|---|---|---|
| Concept | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| createdAt | Int | Yes |
| instance_prompt | Int | Yes |
| class_prompt | Int | Yes |
| instance_data | Int | Yes |
| class_data | Int | Yes |
| num_class_images | Int | Yes |
| save_sample_prompt | Int | Yes |
| save_sample_negative_prompt | Int | Yes |
| n_save_sample | Int | Yes |
| save_guidance_scale | Int | Yes |
| save_infer_steps | Int | Yes |
| pad_tokens | Int | Yes |
| with_prior_preservation | Int | Yes |
| prior_loss_weight | Int | Yes |
| seed | Int | Yes |
| resolution | Int | Yes |
| center_crop | Int | Yes |
| train_text_encoder | Int | Yes |
| train_batch_size | Int | Yes |
| sample_batch_size | Int | Yes |
| num_train_epochs | Int | Yes |
| max_train_steps | Int | Yes |
| gradient_accumulation_steps | Int | Yes |
| gradient_checkpointing | Int | Yes |
| learning_rate | Int | Yes |
| scale_lr | Int | Yes |
| lr_scheduler | Int | Yes |
| lr_warmup_steps | Int | Yes |
| use_8bit_adam | Int | Yes |
| adam_beta1 | Int | Yes |
| adam_beta2 | Int | Yes |
| adam_weight_decay | Int | Yes |
| max_grad_norm | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| num_class_images | Float | No |
| n_save_sample | Float | No |
| save_guidance_scale | Float | No |
| save_infer_steps | Float | No |
| prior_loss_weight | Float | No |
| seed | Float | No |
| resolution | Float | No |
| train_batch_size | Float | No |
| sample_batch_size | Float | No |
| num_train_epochs | Float | No |
| max_train_steps | Float | No |
| gradient_accumulation_steps | Float | No |
| learning_rate | Float | No |
| lr_warmup_steps | Float | No |
| adam_beta1 | Float | No |
| adam_beta2 | Float | No |
| adam_weight_decay | Float | No |
| max_grad_norm | Float | No |
| Name | Type | Nullable |
|---|---|---|
| num_class_images | Int | No |
| n_save_sample | Int | No |
| save_guidance_scale | Float | No |
| save_infer_steps | Int | No |
| prior_loss_weight | Float | No |
| seed | Int | No |
| resolution | Int | No |
| train_batch_size | Int | No |
| sample_batch_size | Int | No |
| num_train_epochs | Int | No |
| max_train_steps | Int | No |
| gradient_accumulation_steps | Int | No |
| learning_rate | Float | No |
| lr_warmup_steps | Int | No |
| adam_beta1 | Float | No |
| adam_beta2 | Float | No |
| adam_weight_decay | Float | No |
| max_grad_norm | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| instance_prompt | String | No |
| class_prompt | String | No |
| instance_data | String | No |
| class_data | String | No |
| num_class_images | Int | No |
| save_sample_prompt | String | No |
| save_sample_negative_prompt | String | No |
| n_save_sample | Int | No |
| save_guidance_scale | Float | No |
| save_infer_steps | Int | No |
| pad_tokens | Boolean | No |
| with_prior_preservation | Boolean | No |
| prior_loss_weight | Float | No |
| seed | Int | No |
| resolution | Int | No |
| center_crop | Boolean | No |
| train_text_encoder | Boolean | No |
| train_batch_size | Int | No |
| sample_batch_size | Int | No |
| num_train_epochs | Int | No |
| max_train_steps | Int | No |
| gradient_accumulation_steps | Int | No |
| gradient_checkpointing | Boolean | No |
| learning_rate | Float | No |
| scale_lr | Boolean | No |
| lr_scheduler | LRScheduler | No |
| lr_warmup_steps | Int | No |
| use_8bit_adam | Boolean | No |
| adam_beta1 | Float | No |
| adam_beta2 | Float | No |
| adam_weight_decay | Float | No |
| max_grad_norm | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| createdAt | DateTime | No |
| instance_prompt | String | No |
| class_prompt | String | No |
| instance_data | String | No |
| class_data | String | No |
| num_class_images | Int | No |
| save_sample_prompt | String | No |
| save_sample_negative_prompt | String | No |
| n_save_sample | Int | No |
| save_guidance_scale | Float | No |
| save_infer_steps | Int | No |
| pad_tokens | Boolean | No |
| with_prior_preservation | Boolean | No |
| prior_loss_weight | Float | No |
| seed | Int | No |
| resolution | Int | No |
| center_crop | Boolean | No |
| train_text_encoder | Boolean | No |
| train_batch_size | Int | No |
| sample_batch_size | Int | No |
| num_train_epochs | Int | No |
| max_train_steps | Int | No |
| gradient_accumulation_steps | Int | No |
| gradient_checkpointing | Boolean | No |
| learning_rate | Float | No |
| scale_lr | Boolean | No |
| lr_scheduler | LRScheduler | No |
| lr_warmup_steps | Int | No |
| use_8bit_adam | Boolean | No |
| adam_beta1 | Float | No |
| adam_beta2 | Float | No |
| adam_weight_decay | Float | No |
| max_grad_norm | Float | No |
| Name | Type | Nullable |
|---|---|---|
| userId | Int | Yes |
| pdfId | Int | Yes |
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| deletedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| pdfId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| pdfId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| filename | Int | Yes |
| stem | Int | Yes |
| extension | Int | Yes |
| size | Int | Yes |
| mime | Int | Yes |
| resourceType | Int | Yes |
| metadata | Int | Yes |
| key | Int | Yes |
| bucket | Int | Yes |
| region | Int | Yes |
| publicUrl | Int | Yes |
| privacy | Int | Yes |
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| deletedAt | Int | Yes |
| zenstack_guard | Int | Yes |
| zenstack_transaction | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| size | Float | No |
| Name | Type | Nullable |
|---|---|---|
| size | Int | No |
| Name | Type | Nullable |
|---|---|---|
| filename | String | No |
| stem | String | No |
| extension | String | No |
| size | Int | No |
| mime | String | No |
| resourceType | FileResourceType | No |
| key | String | No |
| bucket | String | No |
| region | CloudFileRegion | No |
| publicUrl | String | No |
| privacy | FilePrivacy | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | No |
| Name | Type | Nullable |
|---|---|---|
| filename | String | No |
| stem | String | No |
| extension | String | No |
| size | Int | No |
| mime | String | No |
| resourceType | FileResourceType | No |
| key | String | No |
| bucket | String | No |
| region | CloudFileRegion | No |
| publicUrl | String | No |
| privacy | FilePrivacy | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | No |
| Name | Type | Nullable |
|---|---|---|
| pageArtworks | Int | Yes |
| concepts | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | Int | Yes |
| width | Int | Yes |
| tags | Int | Yes |
| fileId | Int | Yes |
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| deletedAt | Int | Yes |
| zenstack_guard | Int | Yes |
| zenstack_transaction | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | Float | No |
| width | Float | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| fileId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| fileId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | Yes |
| width | Int | Yes |
| pages | Int | Yes |
| tags | Int | Yes |
| fileId | Int | Yes |
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| deletedAt | Int | Yes |
| zenstack_guard | Int | Yes |
| zenstack_transaction | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| height | Float | No |
| width | Float | No |
| pages | Float | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| pages | Int | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| pages | Int | No |
| fileId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | No |
| Name | Type | Nullable |
|---|---|---|
| height | Int | No |
| width | Int | No |
| pages | Int | No |
| fileId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| zenstack_guard | Boolean | No |
| zenstack_transaction | String | No |
| Name | Type | Nullable |
|---|---|---|
| pages | Int | Yes |
| pageArtworks | Int | Yes |
| pageTexts | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| artistId | Int | Yes |
| authorId | Int | Yes |
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| deletedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | No |
| authorId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| artistId | String | No |
| authorId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| status | Int | Yes |
| pageId | Int | Yes |
| storyId | Int | Yes |
| artistId | Int | Yes |
| photoId | Int | Yes |
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| deletedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| pageId | String | No |
| storyId | String | No |
| artistId | String | No |
| photoId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| pageId | String | No |
| storyId | String | No |
| artistId | String | No |
| photoId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| status | Int | Yes |
| locale | Int | Yes |
| text | Int | Yes |
| type | Int | Yes |
| pageId | Int | Yes |
| storyId | Int | Yes |
| authorId | Int | Yes |
| translatorId | Int | Yes |
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| deletedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| pageId | String | No |
| storyId | String | No |
| authorId | String | No |
| translatorId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| locale | Locale | No |
| text | String | No |
| type | PageTextType | No |
| pageId | String | No |
| storyId | String | No |
| authorId | String | No |
| translatorId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| artworks | Int | Yes |
| texts | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| status | Int | Yes |
| type | Int | Yes |
| pageNumber | Int | Yes |
| storyId | Int | Yes |
| id | Int | Yes |
| createdAt | Int | Yes |
| updatedAt | Int | Yes |
| deletedAt | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| pageNumber | Float | No |
| Name | Type | Nullable |
|---|---|---|
| pageNumber | Int | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| type | PageType | No |
| pageNumber | Int | No |
| storyId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| status | PageStatus | No |
| type | PageType | No |
| pageNumber | Int | No |
| storyId | String | No |
| id | String | No |
| createdAt | DateTime | No |
| updatedAt | DateTime | No |
| deletedAt | DateTime | No |